aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/uniq
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2007-05-17 00:11:58 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2007-05-17 00:11:58 +0000
commit2fdb65fd822b0012e9969d0dc48e19fe7adda3c8 (patch)
tree383ab1e305563cc0d2e12ee7094b8a68316346ce /usr.bin/uniq
parent7e17f8b8644f82463b46818022b9659a0467cf77 (diff)
downloadsrc-2fdb65fd822b0012e9969d0dc48e19fe7adda3c8.tar.gz
src-2fdb65fd822b0012e9969d0dc48e19fe7adda3c8.zip
Fix confusing misindentation of a closing-brace. (It goes with the switch, not
with the while.)
Notes
Notes: svn path=/head/; revision=169636
Diffstat (limited to 'usr.bin/uniq')
-rw-r--r--usr.bin/uniq/uniq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/uniq/uniq.c b/usr.bin/uniq/uniq.c
index a71726cc5fc8..3521b5020b4e 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;