mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-13 00:45:58 +01:00
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:
parent
0820557c8c
commit
5ec06dcecd
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue