From: Marcel Raad Date: Fri, 22 Feb 2019 18:12:30 +0000 (+0100) Subject: Fix strict-prototypes GCC warning X-Git-Tag: curl-7_64_1~101 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=50f1bb263241aef5aaf3225351cc199b1756fc39;p=thirdparty%2Fcurl.git Fix strict-prototypes GCC warning As seen in the MinGW autobuilds. Caused by commit f26bc29cfec0be84c67cf74065cf8e5e78fd68b7. --- diff --git a/lib/easy.c b/lib/easy.c index b1e264e8dc..a3ec46f55c 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -94,7 +94,7 @@ static long init_flags; #ifdef WIN32 /* win32_cleanup() is the opposite of win32_init() */ -static void win32_cleanup() +static void win32_cleanup(void) { #ifdef USE_WINDOWS_SSPI Curl_sspi_global_cleanup();