fix error messages

This commit is contained in:
Andrew Kelley
2017-09-12 00:07:37 -04:00
parent 99cb6e955a
commit bf52a74803
2 changed files with 2 additions and 2 deletions

View File

@@ -5021,7 +5021,7 @@ void codegen_parsec(CodeGen *g, Buf *full_path) {
ZigList<ErrorMsg *> errors = {0};
int err = parse_h_file(import, &errors, buf_ptr(full_path), g, nullptr);
if (err) {
fprintf(stderr, "unable to parse .h file: %s\n", err_str(err));
fprintf(stderr, "unable to parse C file: %s\n", err_str(err));
exit(1);
}