* builds/windows/ftdebug.c (FT_Message): Print to stderr.
* builds/wince/ftdebug.c (FT_Message): Ditto.
This commit is contained in:
parent
90461c0137
commit
7384085201
@ -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.
|
||||
|
@ -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 );
|
||||
|
@ -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 );
|
||||
|
Loading…
Reference in New Issue
Block a user