win32: Remove some debug spew on startup

This is not needed anymore and was causing problems for pkg-config.
This commit is contained in:
Alexander Larsson 2011-11-03 17:27:08 +01:00
parent d2d62ecfcd
commit 41b8ce7100

View 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);
}