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

* builds/wince/ftdebug.c (FT_Message): Ditto.
GSoC-2017-kushal
Alexei Podtelezhnikov 7 years ago
parent 90461c0137
commit 7384085201
  1. 5
      ChangeLog
  2. 2
      builds/wince/ftdebug.c
  3. 2
      builds/windows/ftdebug.c

@ -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…
Cancel
Save