Commit c9b2801c authored by Jarkko Korpi's avatar Jarkko Korpi Committed by Alexandre Julliard

wininet: Silence no support on this platform message.

parent 2348215b
...@@ -2324,7 +2324,8 @@ static WCHAR *get_proxy_autoconfig_url(void) ...@@ -2324,7 +2324,8 @@ static WCHAR *get_proxy_autoconfig_url(void)
CFRelease( settings ); CFRelease( settings );
return ret; return ret;
#else #else
FIXME( "no support on this platform\n" ); static int once;
if (!once++) FIXME( "no support on this platform\n" );
return NULL; return NULL;
#endif #endif
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment