rio: pad window status strings in wctl files

This makes it possible to read the entire initial contents of the wctl
files without blocking.
This commit is contained in:
Alex Musolino 2019-11-19 12:40:53 +10:30
parent 4d4107b385
commit 59115ba407

View file

@ -406,7 +406,7 @@ winctl(void *arg)
t = "notcurrent";
if(w == input)
t = "current";
pair.ns = snprint(pair.s, pair.ns, "%11d %11d %11d %11d %s %s ",
pair.ns = snprint(pair.s, pair.ns, "%11d %11d %11d %11d %11s %11s ",
w->i->r.min.x, w->i->r.min.y, w->i->r.max.x, w->i->r.max.y, t, s);
send(crm.c2, &pair);
continue;