win32: Remove some debug spew on startup
authorAlexander Larsson <alexl@redhat.com>
Thu, 3 Nov 2011 16:27:08 +0000 (17:27 +0100)
committerAlexander Larsson <alexl@redhat.com>
Thu, 3 Nov 2011 16:27:08 +0000 (17:27 +0100)
This is not needed anymore and was causing problems for pkg-config.

glib/gthread-win32.c

index 96c6a1c..dd777c2 100644 (file)
@@ -963,13 +963,8 @@ g_thread_lookup_native_funcs (void)
 G_GNUC_INTERNAL void
 g_thread_win32_init (void)
 {
-  if (g_thread_lookup_native_funcs ())
-    fprintf (stderr, "(debug) GThread using native mode\n");
-  else
-    {
-      fprintf (stderr, "(debug) GThread using Windows XP mode\n");
-      g_thread_xp_init ();
-    }
+  if (!g_thread_lookup_native_funcs ())
+    g_thread_xp_init ();
 
   InitializeCriticalSection (&g_private_lock);
 }