From 42df15c567bc72646b17e4bc5a52962f8083bdbb Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 28 Jul 2019 13:09:48 -0700 Subject: [PATCH] Switch stderr and stdout to prevent miniupnp warnings from appearing on the console --- mist/mist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mist/mist.h b/mist/mist.h index 7f0bba0..7e2becb 100644 --- a/mist/mist.h +++ b/mist/mist.h @@ -11,7 +11,7 @@ #include "..\version.h" -#define CONSOLE_OUT stderr -#define LOG_OUT stdout +#define CONSOLE_OUT stdout +#define LOG_OUT stderr bool getExternalAddressPortIP4(int proto, unsigned short localPort, PSOCKADDR_IN wanAddr); \ No newline at end of file