From a711497130cfa212483bfae49b543d2d32be7f5c Mon Sep 17 00:00:00 2001 From: John Ralls Date: Sun, 28 Apr 2019 21:53:56 -0700 Subject: [PATCH] Fix Travis failure. Maybe. Can't reproduce it so trying something that looks reasonable. --- gnucash/gnucash-bin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gnucash/gnucash-bin.c b/gnucash/gnucash-bin.c index 659f17381f..ed1261e4cf 100644 --- a/gnucash/gnucash-bin.c +++ b/gnucash/gnucash-bin.c @@ -824,7 +824,7 @@ set_win32_thread_locale() static void redirect_stdout (void) { -#ifdef __MINGW32__ && __MSWIN_CONSOLE__ +#if defined __MINGW32__ && __MSWIN_CONSOLE__ static const WORD MAX_CONSOLE_LINES = 500; int hConHandle; long lStdHandle;