summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-09-08 22:47:17 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-09-08 22:48:16 +0200
commit558dffe3066c0e3941cf4780974b4819f1c6ee74 (patch)
tree320154ef8dff911b7906e8ca78ceae5f7a9605a7
parentab213d60edbeca0e3225aa6edc9a9595096a5aba (diff)
downloadcurl-558dffe3066c0e3941cf4780974b4819f1c6ee74.tar.gz
lib583: fix enum mixup
grrr the previous follow-up to 17fcdf6a31 was wrong
-rw-r--r--tests/libtest/lib583.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib583.c b/tests/libtest/lib583.c
index 4c667ce9b..9091533e8 100644
--- a/tests/libtest/lib583.c
+++ b/tests/libtest/lib583.c
@@ -36,7 +36,7 @@ int test(char *URL)
CURLM *multiHandle = NULL;
CURL *curl = NULL;
CURLcode res = CURLE_OK;
- CURLMcode mres = CURLE_OK;
+ CURLMcode mres;
global_init(CURL_GLOBAL_ALL);