diff options
author | anton <anton@cvs.openbsd.org> | 2017-08-30 07:54:55 +0000 |
---|---|---|
committer | anton <anton@cvs.openbsd.org> | 2017-08-30 07:54:55 +0000 |
commit | 1167e2b036b1055eee2994630bc43efca158f1f3 (patch) | |
tree | 801deac974677352b5ebe54c3fd540a98462ea9b /bin/csh | |
parent | 60ce015f204c856da350c754f0e864442a24eba8 (diff) |
Zap redundant assignment; ok jca@
Diffstat (limited to 'bin/csh')
-rw-r--r-- | bin/csh/lex.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/csh/lex.c b/bin/csh/lex.c index 6d3d731159b..542708c2e7c 100644 --- a/bin/csh/lex.c +++ b/bin/csh/lex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lex.c,v 1.24 2017/01/23 04:53:15 deraadt Exp $ */ +/* $OpenBSD: lex.c,v 1.25 2017/08/30 07:54:54 anton Exp $ */ /* $NetBSD: lex.c,v 1.9 1995/09/27 00:38:46 jtc Exp $ */ /*- @@ -1426,7 +1426,6 @@ again: off = (int) feobp % BUFSIZ; roomleft = BUFSIZ - off; - roomleft = BUFSIZ - off; for (;;) { if (filec && intty) { c = numleft ? numleft : tenex(ttyline, BUFSIZ); |