shithub: freetype+ttf2subf

Download patch

ref: 08a645d833a2e04491fd3c56bb8605c0e7e773b4
parent: 367f301b441f1a99d32ae2388ede055b303132c9
author: Werner Lemberg <[email protected]>
date: Fri Jun 15 10:05:20 EDT 2007

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

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-06-15  Dmitry Timoshkov  <[email protected]>
+
+	* builds/win32/ftdebug.c: Unify debug level handling with other
+	platforms.
+
 2006-06-14  Dmitry Timoshkov  <[email protected]>
 
 	* builds/win32/ftdebug.c (FT_Message): Send debug output to the
--- a/builds/win32/ftdebug.c
+++ b/builds/win32/ftdebug.c
@@ -175,7 +175,7 @@
           if ( *p )
           {
             level = *p++ - '0';
-            if ( level < 0 || level > 6 )
+            if ( level < 0 || level > 7 )
               level = -1;
           }