diff options
-rw-r--r-- | lib/easy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/easy.c b/lib/easy.c index 2c0520a65..c98727e78 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -78,8 +78,9 @@ #define _MPRINTF_REPLACE /* use our functions only */ #include <curl/mprintf.h> -CURLcode curl_global_init(void) +CURLcode curl_global_init(long flags) { + flags = 0; /* not currently used */ Curl_SSL_init(); return CURLE_OK; } |