summaryrefslogtreecommitdiffstats
path: root/usr.bin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/rs/rs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/rs/rs.c b/usr.bin/rs/rs.c
index ebb4238..ce5a240 100644
--- a/usr.bin/rs/rs.c
+++ b/usr.bin/rs/rs.c
@@ -257,9 +257,11 @@ prepfile()
}
else if (orows == 0 && ocols == 0) { /* decide rows and cols */
ocols = owidth / colw;
- if (ocols == 0)
+ if (ocols == 0) {
warnx("display width %d is less than column width %d",
owidth, colw);
+ ocols = 1;
+ }
if (ocols > nelem)
ocols = nelem;
orows = nelem / ocols + (nelem % ocols ? 1 : 0);
OpenPOWER on IntegriCloud