diff options
author | Vito Caputo <vcaputo@gnugeneration.com> | 2017-03-25 16:45:09 -0700 |
---|---|---|
committer | Vito Caputo <vcaputo@gnugeneration.com> | 2017-03-25 16:52:02 -0700 |
commit | a3b40ded1276afe8e9e426c39d721a9ccb989eb8 (patch) | |
tree | 1d5b2ca1802f0408647a74acde640dae1aefef6b /src/xevent.c | |
parent | 8128b3f414f494af1708df627851a8483aeb3160 (diff) |
*: add some missing includes
Diffstat (limited to 'src/xevent.c')
-rw-r--r-- | src/xevent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xevent.c b/src/xevent.c index 0dc31a9..2af3a54 100644 --- a/src/xevent.c +++ b/src/xevent.c @@ -210,7 +210,7 @@ void vwm_xevent_handle_map_request(vwm_t *vwm, XMapRequestEvent *ev) } else { /* this is unexpected */ XMapWindow(VWM_XDISPLAY(vwm), ev->window); - VWM_BUG("handled map request of unmanaged window vwin=%p xwin=%p id=%u", vwin, xwin, ev->window); + VWM_BUG("handled map request of unmanaged window vwin=%p xwin=%p id=%u", vwin, xwin, (unsigned int)ev->window); } } } |