From 4f0511a3a8df91a1dc33c52885a674b69aafbe50 Mon Sep 17 00:00:00 2001 From: jmallett Date: Thu, 17 May 2007 00:11:58 +0000 Subject: [PATCH] Fix confusing misindentation of a closing-brace. (It goes with the switch, not with the while.) --- usr.bin/uniq/uniq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;