diff --git a/usr.bin/rs/rs.c b/usr.bin/rs/rs.c index ebb4238d9cea..ce5a2402e253 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);