From: arg@10ksloc.org Date: Wed, 19 Jul 2006 11:24:58 +0000 (+0200) Subject: fixed a typo X-Git-Url: https://jasonwoof.com/gitweb/?p=dwm.git;a=commitdiff_plain;h=f522930a99d72a4662a7d6d495487bf77b5b6cde fixed a typo --- diff --git a/client.c b/client.c index 62d4afc..97dd96b 100644 --- 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);