diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-06 21:08:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-08-06 21:08:09 +0000 |
commit | 8f4be4c9fc053e06d8170659c9bde356ada1a655 (patch) | |
tree | d116498a9604b21bf16d82850fcf1726939a4f6a /usr.bin/less/ch.c | |
parent | 9293e104f0b834487ffef8344f12e9dc93c0abd0 (diff) |
Remove some double semicolons (hmm, do two semis equal a maxi?).
I've skipped the GNU stuff for now. From Patrick Latifi.
Diffstat (limited to 'usr.bin/less/ch.c')
-rw-r--r-- | usr.bin/less/ch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/less/ch.c b/usr.bin/less/ch.c index ca54da967cf..0966dca9872 100644 --- a/usr.bin/less/ch.c +++ b/usr.bin/less/ch.c @@ -683,7 +683,7 @@ ch_delbufs() while (ch_bufhead != END_OF_CHAIN) { bp = ch_bufhead; - bp->next->prev = bp->prev;; + bp->next->prev = bp->prev; bp->prev->next = bp->next; free(bp); } |