display: Fix window pings

These are 32-bit values, not longs. Treat them as such.
This commit is contained in:
Jasper St. Pierre 2013-12-06 20:03:46 -05:00
parent 6436459381
commit 309f78ff52

View File

@ -506,8 +506,7 @@ meta_display_open (void)
the_display->xids = g_hash_table_new (meta_unsigned_long_hash,
meta_unsigned_long_equal);
the_display->pending_pings = g_hash_table_new (meta_unsigned_long_hash,
meta_unsigned_long_equal);
the_display->pending_pings = g_hash_table_new (g_int_hash, g_int_equal);
the_display->wayland_windows = g_hash_table_new (NULL, NULL);
i = 0;