X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Ftool_binmode.c;h=5495ba4e37412ec34e27c36725c232a00f71ac63;hb=32de14ae0782822e9c54c3fbb28cdefc1f4de969;hp=92033ac03c065c372d701652f6f829aa3b14df94;hpb=7ad0968648048d2d569ebb68461707636e3be09c;p=platform%2Fupstream%2Fcurl.git diff --git a/src/tool_binmode.c b/src/tool_binmode.c index 92033ac..5495ba4 100644 --- a/src/tool_binmode.c +++ b/src/tool_binmode.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2012, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2014, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -41,7 +41,7 @@ void set_binmode(FILE *stream) # ifdef __HIGHC__ _setmode(stream, O_BINARY); # else - setmode(fileno(stream), O_BINARY); + (void)setmode(fileno(stream), O_BINARY); # endif #else (void)stream;