diff options
Diffstat (limited to 'masm/lex.c')
-rw-r--r-- | masm/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -309,7 +309,7 @@ int lexer_init(const char *path, struct lexer *lexer) { FILE *file = fopen(path, "r"); if (file == NULL) { - ERROR("cannot read '%s'", path); + PERROR("cannot read '%s'", path); return M_ERROR; } lexer->file = file; |