win32: Fix a g_once_init_enter call

g_once_init_enter must be given a gsize-sized location.
A gboolean doesn't qualify. This broke the build on win64.

http://bugzilla.gnome.org/show_bug.cgi?id=754307
This commit is contained in:
Matthias Clasen 2015-08-31 13:48:22 -04:00
parent 591eabcbbc
commit 34ec21fab5

View File

@ -3382,7 +3382,7 @@ watch_keys (void)
static void
g_win32_appinfo_init (void)
{
static gboolean initialized = FALSE;
static gsize initialized;
if (g_once_init_enter (&initialized))
{