yet another typo fix
arg@10ksloc.org unknown
Wed, 19 Jul 2006 13:29:45 +0200
1 files changed,
2 insertions(+),
2 deletions(-)
jump to
M
client.c
→
client.c
@@ -208,9 +208,9 @@ c->fh = c->th = wa->height;
c->bh = bh; diff = sw - c->fw; - c->fx = sx + (random() % diff ? diff : 1); + c->fx = random() % (diff ? diff : 1); diff = sh - c->fh; - c->fy = sy + (random() % diff ? diff : 1); + c->fy = random() % (diff ? diff : 1); c->border = 1; c->proto = getproto(c->win);