* builds/windows/ftdebug.c (FT_Message): Print to stderr.

* builds/wince/ftdebug.c (FT_Message): Ditto.
This commit is contained in:
Alexei Podtelezhnikov 2017-10-14 22:22:27 -04:00
parent 90461c0137
commit 7384085201
3 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2017-10-14 Alexei Podtelezhnikov <apodtele@gmail.com>
* builds/windows/ftdebug.c (FT_Message): Print to stderr.
* builds/wince/ftdebug.c (FT_Message): Ditto.
2017-10-14 Behdad Esfahbod <behdad@behdad.org>
[afshaper] Delay creating `hb_set' objects until needed.

View File

@ -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 );

View File

@ -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 );