diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2018-03-01 21:11:41 +0100 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2018-03-01 21:13:00 +0100 |
commit | 5ec06dcecd2b81fc5a3a668072e1b4d9b656515e (patch) | |
tree | 8c62f9186909f60eb83eed3eebb80cb9e09b58ec | |
parent | 0820557c8c13dabb3f598bbfe71a8a6b459f78b8 (diff) |
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
-rw-r--r-- | xwayland/xwm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xwayland/xwm.c b/xwayland/xwm.c index c41b8d47..d9899c57 100644 --- a/xwayland/xwm.c +++ b/xwayland/xwm.c @@ -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; |