From: Anselm R Garbe Date: Thu, 22 May 2008 10:50:18 +0000 (+0100) Subject: Key.mod is uint, Client.[old]bw is int X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=48d0c56eacd59da50b1ed592836ae16fae9aa4cc Key.mod is uint, Client.[old]bw is int --- diff --git a/dwm.c b/dwm.c index 0c9acbe..53f0c12 100644 --- a/dwm.c +++ b/dwm.c @@ -69,7 +69,7 @@ struct Client { int basew, baseh, incw, inch, maxw, maxh, minw, minh; int minax, maxax, minay, maxay; long flags; - uint bw, oldbw; + int bw, oldbw; Bool isbanned, isfixed, isfloating, isurgent; uint tags; Client *next; @@ -94,7 +94,7 @@ typedef struct { } DC; /* draw context */ typedef struct { - ulong mod; + uint mod; KeySym keysym; void (*func)(const void *arg); const void *arg;