diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/head.c | 2 | ||||
-rw-r--r-- | coreutils/sort.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/head.c b/coreutils/head.c index 8dc6ee0..50694bf 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; diff --git a/coreutils/sort.c b/coreutils/sort.c index d86f8dc..7dfe176 100644 --- a/coreutils/sort.c +++ b/coreutils/sort.c @@ -293,7 +293,7 @@ int sort_main(int argc, char **argv) } #ifdef CONFIG_FEATURE_SORT_BIG /* if no key, perform alphabetic sort */ - if(!key_list) add_key()->range[0]=1; + if(!key_list) add_key()->range[0]=1; /* handle -c */ if(global_flags&FLAG_c) { int j=(global_flags&FLAG_u) ? -1 : 0; |