diff options
author | jmallett <jmallett@FreeBSD.org> | 2007-05-17 00:11:58 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2007-05-17 00:11:58 +0000 |
commit | 4f0511a3a8df91a1dc33c52885a674b69aafbe50 (patch) | |
tree | 383ab1e305563cc0d2e12ee7094b8a68316346ce /usr.bin/uniq | |
parent | fdfea0ef5b9f927321648dfdb405ff8be01d410a (diff) | |
download | FreeBSD-src-4f0511a3a8df91a1dc33c52885a674b69aafbe50.zip FreeBSD-src-4f0511a3a8df91a1dc33c52885a674b69aafbe50.tar.gz |
Fix confusing misindentation of a closing-brace. (It goes with the switch, not
with the while.)
Diffstat (limited to 'usr.bin/uniq')
-rw-r--r-- | usr.bin/uniq/uniq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/uniq/uniq.c b/usr.bin/uniq/uniq.c index a71726c..3521b50 100644 --- a/usr.bin/uniq/uniq.c +++ b/usr.bin/uniq/uniq.c @@ -113,7 +113,7 @@ main (int argc, char *argv[]) case '?': default: usage(); - } + } argc -= optind; argv +=optind; |