xcb: don’t use the _unchecked variant for requests which have a reply

This commit is contained in:
Michael Stapelberg
2011-07-31 18:19:41 +02:00
parent 7f3f7c26b6
commit 52b3646ecc
3 changed files with 3 additions and 3 deletions

View File

@ -254,7 +254,7 @@ void xcb_get_numlock_mask(xcb_connection_t *conn) {
XCB_MOD_MASK_5 };
/* Request the modifier map */
cookie = xcb_get_modifier_mapping_unchecked(conn);
cookie = xcb_get_modifier_mapping(conn);
/* Get the keysymbols */
keysyms = xcb_key_symbols_alloc(conn);