freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[freetype2] master 7384085: * builds/windows/ftdebug.c (FT_Message): Pri


From: Alexei Podtelezhnikov
Subject: [freetype2] master 7384085: * builds/windows/ftdebug.c (FT_Message): Print to stderr.
Date: Sat, 14 Oct 2017 22:24:33 -0400 (EDT)

branch: master
commit 73840852016dc69bcf44373ef8ffae0238fead26
Author: Alexei Podtelezhnikov <address@hidden>
Commit: Alexei Podtelezhnikov <address@hidden>

    * builds/windows/ftdebug.c (FT_Message): Print to stderr.
    
    * builds/wince/ftdebug.c (FT_Message): Ditto.
---
 ChangeLog                | 5 +++++
 builds/wince/ftdebug.c   | 2 +-
 builds/windows/ftdebug.c | 2 +-
 3 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 4cc182a..1ee88ca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-10-14  Alexei Podtelezhnikov  <address@hidden>
+
+       * builds/windows/ftdebug.c (FT_Message): Print to stderr.
+        * builds/wince/ftdebug.c (FT_Message): Ditto.
+
 2017-10-14  Behdad Esfahbod  <address@hidden>
 
        [afshaper] Delay creating `hb_set' objects until needed.
diff --git a/builds/wince/ftdebug.c b/builds/wince/ftdebug.c
index 7a20e2f..f516726 100644
--- a/builds/wince/ftdebug.c
+++ b/builds/wince/ftdebug.c
@@ -79,7 +79,7 @@
 
 
     va_start( ap, fmt );
-    vprintf( fmt, ap );
+    vfprintf( stderr, fmt, ap );
     /* send the string to the debugger as well */
     vsprintf( buf, fmt, ap );
     OutputDebugStringEx( buf );
diff --git a/builds/windows/ftdebug.c b/builds/windows/ftdebug.c
index cadfcea..510768c 100644
--- a/builds/windows/ftdebug.c
+++ b/builds/windows/ftdebug.c
@@ -65,7 +65,7 @@
 
 
     va_start( ap, fmt );
-    vprintf( fmt, ap );
+    vfprintf( stderr, fmt, ap );
     /* send the string to the debugger as well */
     vsprintf( buf, fmt, ap );
     OutputDebugStringA( buf );



reply via email to

[Prev in Thread] Current Thread [Next in Thread]