From bf52a748037fad46571a9a76009ea1ca66c9d965 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 12 Sep 2017 00:07:37 -0400 Subject: fix error messages --- src/ir.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ir.cpp') 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) { -- cgit v1.2.3