]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
multi: fix the return code from Curl_pgrsDone()
authorDaniel Stenberg <daniel@haxx.se>
Wed, 20 Jul 2022 10:13:02 +0000 (12:13 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 23 Jul 2022 11:38:47 +0000 (13:38 +0200)
It does not return a CURLcode. Detected by the icc compiler warning
"enumerated type mixed with another type"

Closes #9179

lib/multi.c

index e0280447c2a82d8d44d793e044671a06a0c47360..a5217ee2c6d8eda43ff05254cf5c263a0117d7a7 100644 (file)
@@ -629,7 +629,7 @@ static CURLcode multi_done(struct Curl_easy *data,
   if(CURLE_ABORTED_BY_CALLBACK != result) {
     /* avoid this if we already aborted by callback to avoid this calling
        another callback */
-    CURLcode rc = Curl_pgrsDone(data);
+    int rc = Curl_pgrsDone(data);
     if(!result && rc)
       result = CURLE_ABORTED_BY_CALLBACK;
   }