t* dwm + patches
       
   URI git clone git://git.codevoid.de/dwm-sdk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 91fffb3f7d0cd731aa2a2126c411590d30231c19
   DIR parent 1fa31efebf74f699ce91add53bc08a8e3ec2dccc
   URI Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Mon, 27 Jul 2009 12:01:58 +0100
       
       fixed nn declaration
       Diffstat:
         M config.mk                           |       2 +-
         M dwm.c                               |       3 ++-
       
       2 files changed, 3 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/config.mk b/config.mk
       t@@ -1,5 +1,5 @@
        # dwm version
       -VERSION = 5.6.1
       +VERSION = 5.7
        
        # Customize below to fit your system
        
   DIR diff --git a/dwm.c b/dwm.c
       t@@ -1683,11 +1683,12 @@ updatebarpos(Monitor *m) {
        
        void
        updategeom(void) {
       -        int i, n = 1, nn;
       +        int i, n = 1;
                Client *c;
                Monitor *newmons = NULL, *m = NULL, *tm;
        
        #ifdef XINERAMA
       +        int nn;
                XineramaScreenInfo *info = NULL;
        
                if(XineramaIsActive(dpy))