From 2d97625ea26e1af6d13e13391b116af9f734f673 Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Sat, 14 Oct 2023 12:55:27 -0500 Subject: [PATCH] Fix definition of CurlInit to include void --- src/pextlib1.0/curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pextlib1.0/curl.c b/src/pextlib1.0/curl.c index ebdbe90b59..cb904b7faa 100644 --- a/src/pextlib1.0/curl.c +++ b/src/pextlib1.0/curl.c @@ -1504,7 +1504,7 @@ CurlCmd( * libcurl will never be cleaned (where should I plug the hook?) */ void -CurlInit() +CurlInit(void) { curl_global_init(CURL_GLOBAL_ALL); }