From: Ryan Lortie Date: Mon, 3 Oct 2011 01:13:14 +0000 (-0400) Subject: win32: fix GPrivate fallout X-Git-Tag: 2.31.0~296 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6f711518230cbb2e09c56a7853e191eb6269faef;p=platform%2Fupstream%2Fglib.git win32: fix GPrivate fallout Fix minor mistake in win32 GPrivate code. --- diff --git a/glib/gthread-win32.c b/glib/gthread-win32.c index 1ed2842f7..20d2e21f2 100644 --- a/glib/gthread-win32.c +++ b/glib/gthread-win32.c @@ -436,7 +436,7 @@ g_private_replace (GPrivate *key, DWORD impl = g_private_get_impl (key); gpointer old; - old = TlsGetValue (impl, value); + old = TlsGetValue (impl); if (old && key->notify) key->notify (old); TlsSetValue (impl, value);