mpy-cross: Give a more sensible error message when file doesn't exist.

pull/1865/head
Damien George 2016-03-02 16:12:00 +00:00
rodzic 6bb9d3ea3e
commit 3d1d92acfc
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -55,7 +55,7 @@ STATIC const mp_print_t mp_stderr_print = {NULL, stderr_print_strn};
STATIC int compile_and_save(const char *file, const char *output_file) {
mp_lexer_t *lex = mp_lexer_new_from_file(file);
if (lex == NULL) {
printf("MemoryError: lexer could not allocate memory\n");
printf("could not open file '%s' for reading\n", file);
return 1;
}