[PATCH] wininet: Silence wininet no support on this platform message.
From: Jarkko Korpi <jarkko_korpi(a)hotmail.com> Signed-off-by: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- dlls/wininet/internet.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dlls/wininet/internet.c b/dlls/wininet/internet.c index b9f9f91777..6671950f8c 100644 --- a/dlls/wininet/internet.c +++ b/dlls/wininet/internet.c @@ -2324,7 +2324,8 @@ static WCHAR *get_proxy_autoconfig_url(void) CFRelease( settings ); return ret; #else - FIXME( "no support on this platform\n" ); + static int once; + if (!once++) FIXME( "no support on this platform\n" ); return NULL; #endif } -- 2.17.1
Hi, While running your changed tests, I think I found new failures. Being a bot and all I'm not very good at pattern recognition, so I might be wrong, but could you please double-check? Full results can be found at: https://testbot.winehq.org/JobDetails.pl?Key=53824 Your paranoid android. === debian9 (build log) === Task: WineTest did not produce the wow32 report
participants (2)
-
Alistair Leslie-Hughes -
Marvin