freetype-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ft-devel] PATCH: builds/win32/ftdebug.c: Unify debug level handling wit


From: Dmitry Timoshkov
Subject: [ft-devel] PATCH: builds/win32/ftdebug.c: Unify debug level handling with other platforms
Date: Fri, 15 Jun 2007 16:17:10 +0900

Hello,

all other platforms allow the debug level to be between 0 and 7.

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

--- freetype2/builds/win32/ftdebug.c    Thu Jun 14 09:13:26 2007
+++ freetype2/builds/win32/ftdebug.c    Fri Jun 15 07:08:40 2007
@@ -175,7 +175,7 @@
           if ( *p )
           {
             level = *p++ - '0';
-            if ( level < 0 || level > 6 )
+            if ( level < 0 || level > 7 )
               level = -1;
           }
 






reply via email to

[Prev in Thread] Current Thread [Next in Thread]