| Index: source/libvpx/tools_common.c
|
| ===================================================================
|
| --- source/libvpx/tools_common.c (revision 172621)
|
| +++ source/libvpx/tools_common.c (working copy)
|
| @@ -20,11 +20,10 @@
|
| #endif
|
| #endif
|
|
|
| -FILE* set_binary_mode(FILE *stream)
|
| -{
|
| - (void)stream;
|
| +FILE *set_binary_mode(FILE *stream) {
|
| + (void)stream;
|
| #if defined(_WIN32) || defined(__OS2__)
|
| - _setmode(_fileno(stream), _O_BINARY);
|
| + _setmode(_fileno(stream), _O_BINARY);
|
| #endif
|
| - return stream;
|
| + return stream;
|
| }
|
|
|