From 6e6fafa9b07e6a71042fd1a030ca08e6b3d0512f Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Sun, 21 Dec 2025 23:42:21 +0100 Subject: [PATCH] binmode: delete extra nop instruction from fallback macro Follow-up to 250d613763dfc29f73010696ee7948f19d07dba9 #15787 Closes #20068 --- lib/curlx/binmode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/curlx/binmode.h b/lib/curlx/binmode.h index 3f356edd59..991cc89045 100644 --- a/lib/curlx/binmode.h +++ b/lib/curlx/binmode.h @@ -33,7 +33,7 @@ # define CURLX_SET_BINMODE(stream) (void)setmode(fileno(stream), O_BINARY) #endif #else -# define CURLX_SET_BINMODE(stream) (void)stream; Curl_nop_stmt +# define CURLX_SET_BINMODE(stream) (void)stream #endif #endif /* HEADER_CURL_TOOL_BINMODE_H */