summaryrefslogtreecommitdiffstats
path: root/usr.bin/expand/expand.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/expand/expand.c')
-rw-r--r--usr.bin/expand/expand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/expand/expand.c b/usr.bin/expand/expand.c
index fcc7230..4044cc5 100644
--- a/usr.bin/expand/expand.c
+++ b/usr.bin/expand/expand.c
@@ -157,7 +157,7 @@ getstops(cp)
i = 0;
while (*cp >= '0' && *cp <= '9')
i = i * 10 + *cp++ - '0';
- if (i <= 0 || i > 256)
+ if (i <= 0)
errx(1, "bad tab stop spec");
if (nstops > 0 && i <= tabstops[nstops-1])
errx(1, "bad tab stop spec");
OpenPOWER on IntegriCloud