diff options
Diffstat (limited to 'py/lexerunix.c')
-rw-r--r-- | py/lexerunix.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/py/lexerunix.c b/py/lexerunix.c index 5d96c468f..aa1cbc486 100644 --- a/py/lexerunix.c +++ b/py/lexerunix.c @@ -14,7 +14,6 @@ mp_lexer_t *mp_lexer_new_from_file(const char *filename) { int fd = open(filename, O_RDONLY); if (fd < 0) { - printf("cannot open file %s\n", filename); return NULL; } uint size = lseek(fd, 0, SEEK_END); |