silly switch style fix

This commit is contained in:
Denis Vlasenko
2006-09-27 19:51:06 +00:00
parent 94d5d82bd8
commit c16bd212e3
8 changed files with 10 additions and 10 deletions

View File

@@ -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;