diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2017-09-12 00:07:37 -0400 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2017-09-12 00:07:37 -0400 |
| commit | bf52a748037fad46571a9a76009ea1ca66c9d965 (patch) | |
| tree | 2ca1a08f3072e88ce32c138b58fe7e2b4a2ef954 /src/ir.cpp | |
| parent | 99cb6e955a4a044a19f98abd1d486560ee9c9729 (diff) | |
| download | zig-bf52a748037fad46571a9a76009ea1ca66c9d965.tar.gz zig-bf52a748037fad46571a9a76009ea1ca66c9d965.zip | |
fix error messages
Diffstat (limited to 'src/ir.cpp')
| -rw-r--r-- | src/ir.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ir.cpp b/src/ir.cpp index 73f7b1df1e..bd002324b3 100644 --- a/src/ir.cpp +++ b/src/ir.cpp @@ -13421,7 +13421,7 @@ static TypeTableEntry *ir_analyze_instruction_c_import(IrAnalyze *ira, IrInstruc int err; if ((err = parse_h_buf(child_import, &errors, &cimport_scope->buf, ira->codegen, node))) { - zig_panic("unable to parse h file: %s\n", err_str(err)); + zig_panic("unable to parse C file: %s\n", err_str(err)); } if (errors.length > 0) { |
