xwm: fix call of xcb_change_window_attributes for old gcc versions

gcc 6.3.0 (at least) complains about &values:
expected ‘const uint32_t * {aka const unsigned int *}’ but argument
is of type ‘uint32_t (*)[1] {aka unsigned int (*)[1]}’

Reported by thorwil on irc
This commit is contained in:
Dominique Martinet 2018-03-01 21:11:41 +01:00
parent 0820557c8c
commit 5ec06dcecd
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ static struct wlr_xwayland_surface *wlr_xwayland_surface_create(
XCB_EVENT_MASK_FOCUS_CHANGE |
XCB_EVENT_MASK_PROPERTY_CHANGE;
xcb_change_window_attributes(xwm->xcb_conn, window_id,
XCB_CW_EVENT_MASK, &values);
XCB_CW_EVENT_MASK, values);
surface->xwm = xwm;
surface->window_id = window_id;