mirror of
https://github.com/brl/mutter.git
synced 2024-11-13 01:36:10 -05:00
display: Fix window pings
These are 32-bit values, not longs. Treat them as such.
This commit is contained in:
parent
6436459381
commit
309f78ff52
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user