1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04: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)
{
CURL *c;
CURLcode ret=CURLE_OK;
int ret=0;
CURLM *m;
fd_set rd, wr, exc;
CURLMcode res;