diff options
author | Jacob Moody <moody@posixcafe.org> | 2022-09-11 20:59:59 +0000 |
---|---|---|
committer | Jacob Moody <moody@posixcafe.org> | 2022-09-11 20:59:59 +0000 |
commit | fbd36a8797de2b5b298c06dd96003537a6305162 (patch) | |
tree | 4d3ac69ac428706b72a6c57df10bf24db11d3bd3 | |
parent | e2d6d402f1a4a063b3549cb2e988a6e978858579 (diff) |
rio: correct error message
-rw-r--r-- | sys/src/cmd/rio/xfid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/src/cmd/rio/xfid.c b/sys/src/cmd/rio/xfid.c index e33768857..cee3c006d 100644 --- a/sys/src/cmd/rio/xfid.c +++ b/sys/src/cmd/rio/xfid.c @@ -658,7 +658,7 @@ xfidread(Xfid *x) case Qwctl: if(w == nil){ if(off >= 6*12){ - filsysrespond(x->fs, x, &fc, "no window"); + filsysrespond(x->fs, x, &fc, Etooshort); return; } n = sprint(buf, "%11d %11d %11d %11d nowindow nowindow ", |