diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-09-21 02:56:06 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-09-21 02:56:06 -0400 |
| commit | c2f3dc94eba85a32f3b7ab5857b33636a0a2e4df (patch) | |
| tree | bb809f8eb6a1d7fb709607dcadce511b2a58dd8f /src/codegen.cpp | |
| parent | c4a54377e3f07bbd2f9c54c1962c7941792c2c1f (diff) | |
| parent | ee42caee0e6a24aa252845a72733007ed384d2bf (diff) | |
| download | zig-c2f3dc94eba85a32f3b7ab5857b33636a0a2e4df.tar.gz zig-c2f3dc94eba85a32f3b7ab5857b33636a0a2e4df.zip | |
Merge branch 'c-to-zig'
Diffstat (limited to 'src/codegen.cpp')
| -rw-r--r-- | src/codegen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/codegen.cpp b/src/codegen.cpp index e559a5de74..ab4bf4ebf4 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -5037,7 +5037,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); } |
