From c16bd212e341598452b7885d9e4ac2064f417673 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Wed, 27 Sep 2006 19:51:06 +0000 Subject: silly switch style fix --- coreutils/head.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils/head.c') diff --git a/coreutils/head.c b/coreutils/head.c index 8dc6ee0b4..50694bfef 100644 --- a/coreutils/head.c +++ b/coreutils/head.c @@ -62,7 +62,7 @@ int head_main(int argc, char **argv) /* No size benefit in converting this to bb_getopt_ulflags */ while ((opt = getopt(argc, argv, head_opts)) > 0) { - switch(opt) { + switch (opt) { #if ENABLE_FEATURE_FANCY_HEAD case 'q': header_threshhold = INT_MAX; -- cgit v1.2.3