changed order of variables in drawtext - dwm - dynamic window manager
 (HTM) git clone https://git.parazyd.org/dwm
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 69c7b4b0baa19ef62ae514d06e8e870d87ab71b6
 (DIR) parent 97699e5b1b8d50d2ec332c4643d69d666348d7e9
 (HTM) Author: Anselm R Garbe <garbeam@gmail.com>
       Date:   Mon, 18 Aug 2008 10:00:10 +0100
       
       changed order of variables in drawtext
       Diffstat:
         M dwm.c                               |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git a/dwm.c b/dwm.c
       @@ -569,8 +569,8 @@ drawsquare(Bool filled, Bool empty, Bool invert, unsigned long col[ColLast]) {
        void
        drawtext(const char *text, unsigned long col[ColLast], Bool invert) {
                int i, x, y, h, len, olen;
       -        XRectangle r = { dc.x, dc.y, dc.w, dc.h };
                char buf[256];
       +        XRectangle r = { dc.x, dc.y, dc.w, dc.h };
        
                XSetForeground(dpy, dc.gc, col[invert ? ColFG : ColBG]);
                XFillRectangles(dpy, dc.drawable, dc.gc, &r, 1);