diff --git a/ChangeLog b/ChangeLog index 4cc182ab2..1ee88caac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-10-14 Alexei Podtelezhnikov + + * builds/windows/ftdebug.c (FT_Message): Print to stderr. + * builds/wince/ftdebug.c (FT_Message): Ditto. + 2017-10-14 Behdad Esfahbod [afshaper] Delay creating `hb_set' objects until needed. diff --git a/builds/wince/ftdebug.c b/builds/wince/ftdebug.c index 7a20e2fac..f516726c3 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 cadfceade..510768c12 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 );