diff options
| author | Anselm R Garbe <[email protected]> | 2008-05-22 11:50:18 +0100 |
|---|---|---|
| committer | Anselm R Garbe <[email protected]> | 2008-05-22 11:50:18 +0100 |
| commit | 48d0c56eacd59da50b1ed592836ae16fae9aa4cc (patch) | |
| tree | 3e10bec425146cd3ed7312ec9592c40f63cdcdc6 | |
| parent | s/unsigned long/ulong/ (diff) | |
| download | dwm-48d0c56eacd59da50b1ed592836ae16fae9aa4cc.tar.gz dwm-48d0c56eacd59da50b1ed592836ae16fae9aa4cc.tar.bz2 dwm-48d0c56eacd59da50b1ed592836ae16fae9aa4cc.zip | |
Key.mod is uint, Client.[old]bw is int
| -rw-r--r-- | dwm.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |