diff options
author | emaste <emaste@FreeBSD.org> | 2010-07-15 00:04:14 +0000 |
---|---|---|
committer | emaste <emaste@FreeBSD.org> | 2010-07-15 00:04:14 +0000 |
commit | fc51f07699c12d18c3f565bd7da9ff7eeda0ecde (patch) | |
tree | 2f72aa28f77cae901846b174d2052dedf2ee37f5 /usr.bin/col | |
parent | 7e0d773037f6c4f0fbea1013f4104552d7c73fd3 (diff) | |
download | FreeBSD-src-fc51f07699c12d18c3f565bd7da9ff7eeda0ecde.zip FreeBSD-src-fc51f07699c12d18c3f565bd7da9ff7eeda0ecde.tar.gz |
Remove more extraneous ;s.
Diffstat (limited to 'usr.bin/col')
-rw-r--r-- | usr.bin/col/col.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/col/col.c b/usr.bin/col/col.c index 8b45ba6..4d20f5e 100644 --- a/usr.bin/col/col.c +++ b/usr.bin/col/col.c @@ -461,7 +461,7 @@ flush_line(LINE *l) if (compress_spaces && nspace > 1) { while (1) { - int tab_col, tab_size;; + int tab_col, tab_size; tab_col = (last_col + 8) & ~7; if (tab_col > this_col) |