added missing space

This commit is contained in:
Anselm R. Garbe 2007-01-12 21:56:01 +01:00
parent b3cea4d388
commit ae0b4fdd92
1 changed files with 1 additions and 1 deletions

2
draw.c
View File

@ -149,7 +149,7 @@ drawclient(Client *c) {
XMapWindow(dpy, c->twin);
dc.x = dc.y = 0;
dc.w = c->tw;
drawtext(c->name, dc.norm, False,False);
drawtext(c->name, dc.norm, False, False);
XCopyArea(dpy, dc.drawable, c->twin, dc.gc, 0, 0, c->tw, c->th, 0, 0);
XSync(dpy, False);
}