summaryrefslogtreecommitdiff
path: root/usr.bin/expand
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2001-06-20 01:08:58 +0000
committerDima Dorfman <dd@FreeBSD.org>2001-06-20 01:08:58 +0000
commit91dd86ff52b2446c3967c1531bf57bd6ca679789 (patch)
tree2b5d2d7f14f1db603e82bab857baa683142d4462 /usr.bin/expand
parent69a78d4666397617a31c8a72887228ea8230f849 (diff)
downloadsrc-test2-91dd86ff52b2446c3967c1531bf57bd6ca679789.tar.gz
src-test2-91dd86ff52b2446c3967c1531bf57bd6ca679789.zip
Notes
Diffstat (limited to 'usr.bin/expand')
-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 fcc723083a99..4044cc5d630c 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");