xwayland/xwm: use initializer for props in xsurface_set_wm_state
This avoids uninitialized items and makes it clear where the magic number 2 is coming from.
This commit is contained in:
parent
13f35139d3
commit
c72efcd1ce
|
@ -913,10 +913,7 @@ static void xwm_handle_configure_notify(struct wlr_xwm *xwm,
|
||||||
static void xsurface_set_wm_state(struct wlr_xwayland_surface *xsurface,
|
static void xsurface_set_wm_state(struct wlr_xwayland_surface *xsurface,
|
||||||
int32_t state) {
|
int32_t state) {
|
||||||
struct wlr_xwm *xwm = xsurface->xwm;
|
struct wlr_xwm *xwm = xsurface->xwm;
|
||||||
uint32_t property[2];
|
uint32_t property[] = { state, XCB_WINDOW_NONE };
|
||||||
|
|
||||||
property[0] = state;
|
|
||||||
property[1] = XCB_WINDOW_NONE;
|
|
||||||
|
|
||||||
xcb_change_property(xwm->xcb_conn,
|
xcb_change_property(xwm->xcb_conn,
|
||||||
XCB_PROP_MODE_REPLACE,
|
XCB_PROP_MODE_REPLACE,
|
||||||
|
@ -924,7 +921,7 @@ static void xsurface_set_wm_state(struct wlr_xwayland_surface *xsurface,
|
||||||
xwm->atoms[WM_STATE],
|
xwm->atoms[WM_STATE],
|
||||||
xwm->atoms[WM_STATE],
|
xwm->atoms[WM_STATE],
|
||||||
32, // format
|
32, // format
|
||||||
2, property);
|
sizeof(property) / sizeof(property[0]), property);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void xwm_handle_map_request(struct wlr_xwm *xwm,
|
static void xwm_handle_map_request(struct wlr_xwm *xwm,
|
||||||
|
|
Loading…
Reference in New Issue