ref: 367f301b441f1a99d32ae2388ede055b303132c9
parent: 46dde4953a9ebad69863075672bb79d9ced78e23
author: Werner Lemberg <[email protected]>
date: Thu Jun 14 02:56:52 EDT 2007
* builds/win32/ftdebug.c (FT_Message): Send debug output to the console as well as to the debugger.
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-06-14 Dmitry Timoshkov <[email protected]>
+
+ * builds/win32/ftdebug.c (FT_Message): Send debug output to the
+ console as well as to the debugger.
+
2006-06-14 Werner Lemberg <[email protected]>
* src/autofit/aflatin.c (af_latin_uniranges): Expand structure to
--- a/builds/win32/ftdebug.c
+++ b/builds/win32/ftdebug.c
@@ -63,6 +63,8 @@
va_start( ap, fmt );
+ vprintf( fmt, ap );
+ /* send the string to the debugger as well */
vsprintf( buf, fmt, ap );
OutputDebugStringA( buf );
va_end( ap );