From 844c2501be8437f64e29b842ab7a77625aff613b Mon Sep 17 00:00:00 2001 From: Аристарх Фещуков Date: Tue, 20 Mar 2018 19:50:12 +0300 Subject: Update proc_macro.cpp --- src/expand/proc_macro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/expand/proc_macro.cpp') 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 -- cgit v1.2.3