ref: 73840852016dc69bcf44373ef8ffae0238fead26
parent: 90461c0137e5369fc0fdcaffc4abd640a9591cd3
author: Alexei Podtelezhnikov <[email protected]>
date: Sat Oct 14 18:22:27 EDT 2017
* builds/windows/ftdebug.c (FT_Message): Print to stderr. * builds/wince/ftdebug.c (FT_Message): Ditto.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2017-10-14 Alexei Podtelezhnikov <[email protected]>
+
+ * builds/windows/ftdebug.c (FT_Message): Print to stderr.
+ * builds/wince/ftdebug.c (FT_Message): Ditto.
+
2017-10-14 Behdad Esfahbod <[email protected]>
[afshaper] Delay creating `hb_set' objects until needed.
--- 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 );
--- 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 );