mpy-cross: Give a more sensible error message when file doesn't exist.
This commit is contained in:
parent
6bb9d3ea3e
commit
3d1d92acfc
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user