Commit d25a0a1b authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

return an int, not a CURLcode

parent 4d17e775
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;