aboutsummaryrefslogtreecommitdiff
path: root/coreutils/sort.c
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-27 19:51:06 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-09-27 19:51:06 +0000
commita87fd79356d319d89ac18a57cd1d494e60865d1e (patch)
tree843350d8cd414849eadca5b65ef8f497834895d2 /coreutils/sort.c
parent643e5fec4711246b2836102e4ad74ba66a63329e (diff)
downloadbusybox-w32-a87fd79356d319d89ac18a57cd1d494e60865d1e.tar.gz
busybox-w32-a87fd79356d319d89ac18a57cd1d494e60865d1e.tar.bz2
busybox-w32-a87fd79356d319d89ac18a57cd1d494e60865d1e.zip
silly switch style fix
git-svn-id: svn://busybox.net/trunk/busybox@16239 69ca8d6d-28ef-0310-b511-8ec308f3f277
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)
293 } 293 }
294#ifdef CONFIG_FEATURE_SORT_BIG 294#ifdef CONFIG_FEATURE_SORT_BIG
295 /* if no key, perform alphabetic sort */ 295 /* if no key, perform alphabetic sort */
296 if(!key_list) add_key()->range[0]=1; 296 if(!key_list) add_key()->range[0]=1;
297 /* handle -c */ 297 /* handle -c */
298 if(global_flags&FLAG_c) { 298 if(global_flags&FLAG_c) {
299 int j=(global_flags&FLAG_u) ? -1 : 0; 299 int j=(global_flags&FLAG_u) ? -1 : 0;