aboutsummaryrefslogtreecommitdiff
path: root/coreutils/sort.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2006-09-27 19:51:06 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2006-09-27 19:51:06 +0000
commitc16bd212e341598452b7885d9e4ac2064f417673 (patch)
tree843350d8cd414849eadca5b65ef8f497834895d2 /coreutils/sort.c
parent94d5d82bd84ec65d52c3df92276221d48990f306 (diff)
downloadbusybox-c16bd212e341598452b7885d9e4ac2064f417673.tar.gz
silly switch style fix
Diffstat (limited to 'coreutils/sort.c')
-rw-r--r--coreutils/sort.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c
index d86f8dcde..7dfe1764c 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;