From: Daniel Stenberg Date: Tue, 19 Jul 2022 14:45:30 +0000 (+0200) Subject: file: fix icc enumerated type mixed with another type warning X-Git-Tag: curl-7_85_0~151 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c61e6de7d5374986ed9ae5dbf23ef32b5e9b6a44;p=thirdparty%2Fcurl.git file: fix icc enumerated type mixed with another type warning Ref: #9179 Closes #9181 --- diff --git a/lib/file.c b/lib/file.c index 40a5e42fa3..15d7f3e57a 100644 --- a/lib/file.c +++ b/lib/file.c @@ -236,7 +236,7 @@ static CURLcode file_disconnect(struct Curl_easy *data, { (void)dead_connection; /* not used */ (void)conn; - return file_done(data, 0, 0); + return file_done(data, CURLE_OK, FALSE); } #ifdef DOS_FILESYSTEM