commit | ceeae30f47b9d628484ae398bc38f3f60ee8eab4 | [log] [tgz] |
---|---|---|
author | Behdad Esfahbod <behdad@behdad.org> | Thu Jan 31 19:27:36 2013 -0500 |
committer | Behdad Esfahbod <behdad@behdad.org> | Thu Jan 31 19:27:36 2013 -0500 |
tree | c820333ae745b1b012c2712c11200e892d6428f0 | |
parent | 7cba8a673b4b436a737fc4ffe85dc84ddd2bf41f [diff] [blame] |
Really fix setmode this time Thanks to Khaled for spotting it.
diff --git a/util/options.cc b/util/options.cc index 57531d5..bd4d55e 100644 --- a/util/options.cc +++ b/util/options.cc
@@ -558,7 +558,7 @@ fp = fopen (output_file, "wb"); else { #ifdef HAVE_SETMODE - _setmode (fileno (stdout), _O_BINARY); + setmode (fileno (stdout), _O_BINARY); #endif fp = stdout; }