1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-11 12:05:06 -05:00

return an int, not a CURLcode

This commit is contained in:
Daniel Stenberg 2004-02-13 12:17:42 +00:00
parent 4d17e77532
commit d25a0a1bc8

View File

@ -16,7 +16,7 @@
int test(char *URL) int test(char *URL)
{ {
CURL *c; CURL *c;
CURLcode ret=CURLE_OK; int ret=0;
CURLM *m; CURLM *m;
fd_set rd, wr, exc; fd_set rd, wr, exc;
CURLMcode res; CURLMcode res;