binmode: delete extra nop instruction from fallback macro

Follow-up to 250d613763 #15787

Closes #20068
This commit is contained in:
Viktor Szakats 2025-12-21 23:42:21 +01:00
parent 4ad87f2cb8
commit 6e6fafa9b0
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201

View file

@ -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 */