* builds/win32/ftdebug.c: Unify debug level handling with other

platforms.
This commit is contained in:
Werner Lemberg 2007-06-15 14:05:20 +00:00
parent 367f301b44
commit 08a645d833
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2006-06-15 Dmitry Timoshkov <dmitry@codeweavers.com>
* builds/win32/ftdebug.c: Unify debug level handling with other
platforms.
2006-06-14 Dmitry Timoshkov <dmitry@codeweavers.com>
* builds/win32/ftdebug.c (FT_Message): Send debug output to the

View File

@ -175,7 +175,7 @@
if ( *p )
{
level = *p++ - '0';
if ( level < 0 || level > 6 )
if ( level < 0 || level > 7 )
level = -1;
}