Replace tabs with spaces and Compiler warning fix.

This commit is contained in:
Yang Tse 2006-10-19 22:49:33 +00:00
parent 4f6ed683e8
commit ef267ab449

View File

@ -46,11 +46,11 @@ static CURLMcode perform(CURLM * multi)
if (select(maxfd + 1, &fdread, &fdwrite, &fdexcep, 0) == -1) if (select(maxfd + 1, &fdread, &fdwrite, &fdexcep, 0) == -1)
return (CURLMcode) ~CURLM_OK; return (CURLMcode) ~CURLM_OK;
} }
if (loop <= 0) {
/* We only reach this point if (loop <= 0) */
fprintf(stderr, "ABORTING TEST, since it seems " fprintf(stderr, "ABORTING TEST, since it seems "
"that it would have run forever.\n"); "that it would have run forever.\n");
return (CURLMcode) ~CURLM_OK; return (CURLMcode) ~CURLM_OK;
}
} }
int test(char *URL) int test(char *URL)