Use unchecked instead of checked call because the error has to be in the error queue

This commit is contained in:
Arnaud Fontaine 2008-03-21 16:29:27 +00:00 committed by Julien Danjou
parent 98091b2f1e
commit 4bd034f768
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ x_select_input(xcb_connection_t *c, xcb_window_t w,
uint32_t event_mask)
{
const uint32_t config_win_val[] = { event_mask };
xcb_change_window_attributes_checked(c, w, XCB_CW_EVENT_MASK, config_win_val);
xcb_change_window_attributes(c, w, XCB_CW_EVENT_MASK, config_win_val);
}
/** Equivalent to 'XGetTransientForHint' which is actually a