diff options
author | Yang Tse <yangsita@gmail.com> | 2011-07-26 19:42:16 +0200 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2011-07-26 19:42:16 +0200 |
commit | 78bbd0eecff23203dd8a1aa2dd76143af9a90b7b (patch) | |
tree | 7012069d3acc2b88a1ba09bc202fb3a4eb454fc6 /tests/libtest/lib560.c | |
parent | f1586cb4775681810afd8e6626e7842d459f3b85 (diff) | |
download | curl-78bbd0eecff23203dd8a1aa2dd76143af9a90b7b.tar.gz |
fix compiler warning
Diffstat (limited to 'tests/libtest/lib560.c')
-rw-r--r-- | tests/libtest/lib560.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/libtest/lib560.c b/tests/libtest/lib560.c index 851d5d193..a91d863ab 100644 --- a/tests/libtest/lib560.c +++ b/tests/libtest/lib560.c @@ -37,7 +37,6 @@ int test(char *URL) { CURL *http_handle; CURLM *multi_handle = NULL; - CURLMcode code; int res; int still_running; /* keep number of running handles */ @@ -63,7 +62,7 @@ int test(char *URL) curl_multi_add_handle(multi_handle, http_handle); /* we start some action by calling perform right away */ - code = curl_multi_perform(multi_handle, &still_running); + (void) curl_multi_perform(multi_handle, &still_running); while(still_running) { struct timeval timeout; @@ -98,7 +97,7 @@ int test(char *URL) case 0: default: /* timeout or readable/writable sockets */ - code = curl_multi_perform(multi_handle, &still_running); + (void) curl_multi_perform(multi_handle, &still_running); break; } } |