diff options
author | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-02-22 19:12:30 +0100 |
---|---|---|
committer | Marcel Raad <Marcel.Raad@teamviewer.com> | 2019-02-22 19:12:30 +0100 |
commit | 50f1bb263241aef5aaf3225351cc199b1756fc39 (patch) | |
tree | bd339b28fc36fec6dd201381a096ab166371ca2f /lib/easy.c | |
parent | 87ba80a6df1dfd7ceaaa52352c9f23afff0ed513 (diff) | |
download | curl-50f1bb263241aef5aaf3225351cc199b1756fc39.tar.gz |
Fix strict-prototypes GCC warning
As seen in the MinGW autobuilds. Caused by commit
f26bc29cfec0be84c67cf74065cf8e5e78fd68b7.
Diffstat (limited to 'lib/easy.c')
-rw-r--r-- | lib/easy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/easy.c b/lib/easy.c index b1e264e8d..a3ec46f55 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(); |