From 6c2931776f4575b126e4f587969759de0b2be170 Mon Sep 17 00:00:00 2001 From: David Hill Date: Sun, 15 Jul 2012 00:25:20 -0400 Subject: [PATCH] use UINT32_MAX in xcb_get_property for atoms. --- spectrwm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spectrwm.c b/spectrwm.c index 0ddc31a..28ad85f 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -1032,7 +1032,7 @@ ewmh_get_win_state(struct ws_win *win) win->ewmh_flags |= SWM_F_MANUAL; c = xcb_get_property(conn, False, win->id, ewmh[_NET_WM_STATE].atom, - XCB_ATOM_ATOM, 0, (~0L)); + XCB_ATOM_ATOM, 0, UINT32_MAX); r = xcb_get_property_reply(conn, c, NULL); if (!r) return; -- 1.7.10.4