From e94681b9618eafbdd23d8b1416fc536fc81debbc Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Wed, 2 Dec 2015 00:59:58 -0700 Subject: add test for undeclared identifier error --- src/codegen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/codegen.cpp b/src/codegen.cpp index 45bbfeb310..4da2075f9d 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -821,7 +821,7 @@ static ImportTableEntry *codegen_add_code(CodeGen *g, Buf *source_path, Buf *sou Buf *import_code = buf_alloc(); if ((err = os_fetch_file_path(&full_path, import_code))) { add_node_error(g, top_level_decl, - buf_sprintf("unable to open \"%s\": %s", buf_ptr(&full_path), err_str(err))); + buf_sprintf("unable to open '%s': %s", buf_ptr(&full_path), err_str(err))); break; } codegen_add_code(g, &top_level_decl->data.use.path, import_code); -- cgit v1.2.3