mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-25 15:06:14 +01:00
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:
parent
591eabcbbc
commit
34ec21fab5
@ -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))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user