yet another typo fix 0fb1842f
arg@10ksloc.org · 2006-07-19 13:29 1 file(s) · +2 −2
client.c +2 −2
208 208
	c->bh = bh;
209 209
210 210
	diff = sw - c->fw;
211 -
	c->fx = sx + (random() % diff ? diff : 1);
211 +
	c->fx = random() % (diff ? diff : 1);
212 212
	diff = sh - c->fh;
213 -
	c->fy = sy + (random() % diff ? diff : 1);
213 +
	c->fy = random() % (diff ? diff : 1);
214 214
215 215
	c->border = 1;
216 216
	c->proto = getproto(c->win);