From 67e28068e14428afe8335a1503ea7d734419326d Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Wed, 12 Oct 2011 22:49:39 -0400 Subject: [PATCH] win32: fix function name clash --- glib/gthread-win32.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/glib/gthread-win32.c b/glib/gthread-win32.c index 2babc92..c8af9c8 100644 --- a/glib/gthread-win32.c +++ b/glib/gthread-win32.c @@ -476,7 +476,7 @@ g_system_thread_exit (void) } static guint __stdcall -g_thread_proxy (gpointer data) +g_thread_win32_proxy (gpointer data) { GThreadData *self = (GThreadData*) data; @@ -508,7 +508,7 @@ g_system_thread_new (GThreadFunc func, retval->joinable = joinable; - retval->thread = (HANDLE) _beginthreadex (NULL, stack_size, g_thread_proxy, + retval->thread = (HANDLE) _beginthreadex (NULL, stack_size, g_thread_win32_proxy, retval, 0, &ignore); if (retval->thread == NULL) -- 2.7.4