1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

curl tool: fix compiler warning

This commit is contained in:
Yang Tse 2011-10-05 22:27:29 +02:00
parent 7296b2aa25
commit 4a57bf6d10

View File

@ -43,6 +43,8 @@ void set_binmode(FILE *stream)
# else
setmode(fileno(stream), O_BINARY);
# endif
#else
(void)stream;
#endif
}