diff options
| author | Andrew Kelley <superjoe30@gmail.com> | 2015-12-02 00:59:58 -0700 |
|---|---|---|
| committer | Andrew Kelley <superjoe30@gmail.com> | 2015-12-02 00:59:58 -0700 |
| commit | e94681b9618eafbdd23d8b1416fc536fc81debbc (patch) | |
| tree | 06569e4f9f2a60061b28bda2bfb349eaab59ec68 /src/codegen.cpp | |
| parent | 370de7386ce811b6381c3ffcf5dd8efd2810da2b (diff) | |
| download | zig-e94681b9618eafbdd23d8b1416fc536fc81debbc.tar.gz zig-e94681b9618eafbdd23d8b1416fc536fc81debbc.zip | |
add test for undeclared identifier error
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 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); |
