Merge pull request #697 from martinetd/xwm_values
xwm: fix call of xcb_change_window_attributes for old gcc versions
This commit is contained in:
commit
3d176fcd1a
|
@ -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 New Issue