From 59115ba4075891c17d06a79c61998ed162e2d26f Mon Sep 17 00:00:00 2001 From: Alex Musolino Date: Tue, 19 Nov 2019 12:40:53 +1030 Subject: rio: pad window status strings in wctl files This makes it possible to read the entire initial contents of the wctl files without blocking. --- sys/src/cmd/rio/wind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/src/cmd/rio/wind.c b/sys/src/cmd/rio/wind.c index 004990118..1026a768e 100644 --- a/sys/src/cmd/rio/wind.c +++ b/sys/src/cmd/rio/wind.c @@ -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; -- cgit v1.2.3