From 44be99388e487998661a851ffdd72cb7fd4bb3f0 Mon Sep 17 00:00:00 2001 From: lethosor Date: Sat, 11 Apr 2020 01:43:06 -0400 Subject: [PATCH] Revert "Fall back to dfout_C if set before stderr.log" Makes stuff go to stdout.log instead This reverts commit 148b5495cc589d2a4ddd6c0be67ae7f3dea3ad92. --- library/Console-posix.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/library/Console-posix.cpp b/library/Console-posix.cpp index 76b5a8cb2..6fb1cbff3 100644 --- a/library/Console-posix.cpp +++ b/library/Console-posix.cpp @@ -903,10 +903,7 @@ void Console::add_text(color_value color, const std::string &text) if (inited) d->print_text(color, text); else - { - FILE *out = d->dfout_C ? d->dfout_C : stderr; - fwrite(text.data(), 1, text.size(), out); - } + fwrite(text.data(), 1, text.size(), stderr); } int Console::get_columns(void)