diff options
author | John Hodge (Mutabah) <acessdev@gmail.com> | 2018-03-21 07:41:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-21 07:41:27 +0800 |
commit | e49cd3b71a5b5458ecd3f3937c04d1a35871a190 (patch) | |
tree | af7e55ceb9c70de4fd93685e6b187d73343694ea /src | |
parent | 8a64df35a605394fdc969b7abb2702a810d740e5 (diff) | |
parent | 844c2501be8437f64e29b842ab7a77625aff613b (diff) | |
download | mrust-e49cd3b71a5b5458ecd3f3937c04d1a35871a190.tar.gz |
Merge pull request #65 from aristarh2704/patch-1
Update proc_macro.cpp - fix typo
Diffstat (limited to 'src')
-rw-r--r-- | src/expand/proc_macro.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expand/proc_macro.cpp b/src/expand/proc_macro.cpp index 5c06a8ce..29bd6e8c 100644 --- a/src/expand/proc_macro.cpp +++ b/src/expand/proc_macro.cpp @@ -797,7 +797,7 @@ ProcMacroInv::ProcMacroInv(const Span& sp, const char* executable, const ::HIR:: int stdout_pipes[2]; if( pipe(stdout_pipes) != 0) { - BUG(sp, "Unable to create stdin pipe pair for proc macro, " << strerror(errno)); + BUG(sp, "Unable to create stdout pipe pair for proc macro, " << strerror(errno)); } this->child_stdout = stdout_pipes[0]; // Read end |