tKey.mod is uint, Client.[old]bw is int - dwm - [fork] customized build of dwm, the dynamic window manager
 (HTM) git clone git://src.adamsgaard.dk/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 48d0c56eacd59da50b1ed592836ae16fae9aa4cc
 (DIR) parent 825d6cb93a37f8c67a7c8b1a027e5eebc3f4dda7
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Thu, 22 May 2008 11:50:18 +0100
       
       Key.mod is uint, Client.[old]bw is int
       Diffstat:
         M dwm.c                               |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/dwm.c b/dwm.c
       t@@ -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;
       t@@ -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;