aboutsummaryrefslogtreecommitdiff
path: root/src/testcurl/https/test_https_get_select.c
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-10-30 18:39:47 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-10-30 18:39:47 +0300
commit80ff0e15965e75532e9cd127bf06ec20ee4f1816 (patch)
tree31a5ec5434752275d743997b9f061613dbeca4f2 /src/testcurl/https/test_https_get_select.c
parenta3e227ea1590bc2dc3c46bd708b842d4d3818828 (diff)
downloadlibmicrohttpd-80ff0e15965e75532e9cd127bf06ec20ee4f1816.tar.gz
libmicrohttpd-80ff0e15965e75532e9cd127bf06ec20ee4f1816.zip
tests: fixed some 'unused return value' compiler warnings
Diffstat (limited to 'src/testcurl/https/test_https_get_select.c')
-rw-r--r--src/testcurl/https/test_https_get_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testcurl/https/test_https_get_select.c b/src/testcurl/https/test_https_get_select.c
index 09e2ca0e..06964c82 100644
--- a/src/testcurl/https/test_https_get_select.c
+++ b/src/testcurl/https/test_https_get_select.c
@@ -207,7 +207,7 @@ testExternalGet (int flags)
207 } 207 }
208 } 208 }
209 else 209 else
210 sleep (1); 210 (void)sleep (1);
211 curl_multi_perform (multi, &running); 211 curl_multi_perform (multi, &running);
212 if (running == 0) 212 if (running == 0)
213 { 213 {