diff options
author | Daniel Stenberg <daniel@haxx.se> | 2001-05-30 08:01:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2001-05-30 08:01:09 +0000 |
commit | ab449cce733893727c4e85be152b167833485850 (patch) | |
tree | a47cc175aaf01c8360db01d1b3518792ad122ac6 /src | |
parent | b541537c66d19660635703b18bc344789121a409 (diff) |
now uses CURL_GLOBAL_DEFAULT
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c index cd01e0518..4466751a2 100644 --- a/src/main.c +++ b/src/main.c @@ -179,7 +179,7 @@ static CURLcode win32_init(void) { return CURLE_OK; } */ CURLcode main_init(void) { - curl_global_init(0); + curl_global_init(CURL_GLOBAL_DEFAULT); return win32_init(); } |