win32: fix incorrect specifier

error: format ‘%u’ expects argument of type ‘unsigned int’, but argument 4 has
   type ‘gsize {aka long long unsigned int}’ [-Werror=format=]

https://bugzilla.gnome.org/show_bug.cgi?id=755154
This commit is contained in:
Matthew Waters 2015-09-17 20:38:10 +10:00 committed by Matthias Clasen
parent 2bc094264b
commit 8297ea8bad

View File

@ -3095,7 +3095,7 @@ link_handlers_to_registered_apps (void)
}
}
g_debug ("%u undefhandled extensions\n", unhandled_exts);
g_debug ("%" G_GSIZE_FORMAT "undefhandled extensions\n", unhandled_exts);
unhandled_exts= 0;
g_hash_table_iter_init (&sup_iter, extensions);
while (g_hash_table_iter_next (&sup_iter,
@ -3109,7 +3109,7 @@ link_handlers_to_registered_apps (void)
unhandled_exts += 1;
}
}
g_debug ("%u undefhandled extensions\n", unhandled_exts);
g_debug ("%" G_GSIZE_FORMAT "undefhandled extensions\n", unhandled_exts);
}
static void