From 4bd034f7686eec2e0bd59483d9afb0d8d4cab1fd Mon Sep 17 00:00:00 2001 From: Arnaud Fontaine Date: Fri, 21 Mar 2008 16:29:27 +0000 Subject: [PATCH] Use unchecked instead of checked call because the error has to be in the error queue --- common/xutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/xutil.c b/common/xutil.c index fd1ca2ea..7d145fa7 100644 --- a/common/xutil.c +++ b/common/xutil.c @@ -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