Merge pull request #697 from martinetd/xwm_values

xwm: fix call of xcb_change_window_attributes for old gcc versions
master
emersion 7 years ago committed by GitHub
commit 3d176fcd1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save