Commit in reactos/subsys/win32k/objects on MAIN
text.c+4-21.110 -> 1.111
Log error code when freetype fails to initialize

reactos/subsys/win32k/objects
text.c 1.110 -> 1.111
diff -u -r1.110 -r1.111
--- text.c	24 Aug 2004 17:29:00 -0000	1.110
+++ text.c	13 Sep 2004 17:17:17 -0000	1.111
@@ -22,7 +22,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-/* $Id: text.c,v 1.110 2004/08/24 17:29:00 navaraf Exp $ */
+/* $Id: text.c,v 1.111 2004/09/13 17:17:17 gvg Exp $ */
 #include <w32k.h>
 
 #include <ft2build.h>
@@ -129,8 +129,10 @@
    ExInitializeFastMutex(&FreeTypeLock);
 
    ulError = FT_Init_FreeType(&library);
-   if (ulError)
+   if (ulError) {
+      DPRINT1("FT_Init_FreeType failed with error code 0x%x\n", ulError);
       return FALSE;
+   }
 
    IntLoadSystemFonts();
 
CVSspam 0.2.8