diff options
author | Аристарх Фещуков <fe.arik@yandex.ru> | 2018-03-20 19:50:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-20 19:50:12 +0300 |
commit | 844c2501be8437f64e29b842ab7a77625aff613b (patch) | |
tree | af7e55ceb9c70de4fd93685e6b187d73343694ea /src | |
parent | 8a64df35a605394fdc969b7abb2702a810d740e5 (diff) | |
download | mrust-844c2501be8437f64e29b842ab7a77625aff613b.tar.gz |
Update proc_macro.cpp
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 |