dwm

my fork of dwm
Index Commits Files Refs README LICENSE
commit f522930a99d72a4662a7d6d495487bf77b5b6cde
parent aebd745f72d3bc049d0af68aec33cf17277b20e9
Author: arg@10ksloc.org <unknown>
Date:   Wed, 19 Jul 2006 13:24:58 +0200

fixed a typo

Diffstat:
Mclient.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/client.c b/client.c
@@ -210,7 +210,7 @@ manage(Window w, XWindowAttributes *wa)
     diff = sw - c->fw;
     c->fx = sx + (random() % diff ? diff : 1);
     diff = sh - c->fh;
-    c->fy = sx + (random() % diff ? diff : 1);
+    c->fy = sy + (random() % diff ? diff : 1);
 
     c->border = 1;
     c->proto = getproto(c->win);