From: Viktor Szakats Date: Wed, 5 Feb 2025 01:26:01 +0000 (+0100) Subject: transfer: replace `false` with `FALSE` X-Git-Tag: curl-8_12_0~1 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=86ee64901f9a8e78d56b50f83e27d20691809764;p=thirdparty%2Fcurl.git transfer: replace `false` with `FALSE` Follow-up to c9afcecee94284e754d82354c79e4e37f09bff61 #16170 Closes #16177 --- diff --git a/lib/transfer.c b/lib/transfer.c index ba46161388..c4b23a8f0c 100644 --- a/lib/transfer.c +++ b/lib/transfer.c @@ -176,9 +176,9 @@ static bool xfer_recv_shutdown_started(struct Curl_easy *data) int sockindex; if(!data || !data->conn) - return false; + return FALSE; if(data->conn->sockfd == CURL_SOCKET_BAD) - return false; + return FALSE; sockindex = (data->conn->sockfd == data->conn->sock[SECONDARYSOCKET]); return Curl_shutdown_started(data, sockindex); }