From 8176a1253b013828efc2007424883d50f53b0122 Mon Sep 17 00:00:00 2001 From: axel Date: Mon, 22 Jan 2007 01:22:42 +1000 Subject: [PATCH] Do not use stdout to report errors when stderr is dead - take the hint instead... darcs-hash:20070121152242-ac50b-3e192328959cf65f03756b3bfbb794fb43dccead.gz --- exec.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exec.c b/exec.c index bc53100d7..569332005 100644 --- a/exec.c +++ b/exec.c @@ -763,9 +763,8 @@ static void do_builtin_io( wchar_t *out, wchar_t *err ) { /* Can't really show any error message here, since stderr is - dead. Complain a bit on stdout. + dead. */ - fwprintf( stdout, L"fish: Error while writing to stderr\n" ); } }