util/options.cc |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ceeae30f47b9d628484ae398bc38f3f60ee8eab4
Author: Behdad Esfahbod <beh...@behdad.org>
Date:   Thu Jan 31 19:27:36 2013 -0500

    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 @@ output_options_t::get_file_handle (void)
     fp = fopen (output_file, "wb");
   else {
 #ifdef HAVE_SETMODE
-    _setmode (fileno (stdout), _O_BINARY);
+    setmode (fileno (stdout), _O_BINARY);
 #endif
     fp = stdout;
   }
_______________________________________________
HarfBuzz mailing list
HarfBuzz@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/harfbuzz

Reply via email to