From 367f301b441f1a99d32ae2388ede055b303132c9 Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Thu, 14 Jun 2007 06:56:52 +0000 Subject: [PATCH] * builds/win32/ftdebug.c (FT_Message): Send debug output to the console as well as to the debugger. --- ChangeLog | 5 +++++ builds/win32/ftdebug.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 128905b61..11f0824c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-06-14 Dmitry Timoshkov + + * builds/win32/ftdebug.c (FT_Message): Send debug output to the + console as well as to the debugger. + 2006-06-14 Werner Lemberg * src/autofit/aflatin.c (af_latin_uniranges): Expand structure to diff --git a/builds/win32/ftdebug.c b/builds/win32/ftdebug.c index 420b008b7..70a1da332 100644 --- 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 );