diff options
author | Wynn Wolf Arbor | 2020-03-18 19:47:57 +0100 |
---|---|---|
committer | Wolfgang Müller | 2021-04-27 12:28:35 +0200 |
commit | 03b67742f6e3939ceae5f9587c60391d35259f6d (patch) | |
tree | 53632f4fd8eab5f70976d88b2550c9022eecec78 /xevents.c | |
parent | 13377b4e34be6d298eeb41a55df939f39ee7f5a7 (diff) | |
download | cwm-03b67742f6e3939ceae5f9587c60391d35259f6d.tar.gz |
Fix several sign-compare warnings
Diffstat (limited to 'xevents.c')
-rw-r--r-- | xevents.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -410,7 +410,7 @@ xev_handle_clientmessage(XEvent *ee) * is 0xFFFFFFFF (-1) then the window should appear * on all desktops, in our case, group 0. */ - if (e->data.l[0] == (unsigned long)-1) + if (e->data.l[0] == 0xFFFFFFFF) group_movetogroup(cc, 0); else if (e->data.l[0] >= 0 && |