aboutsummaryrefslogtreecommitdiff
path: root/coreutils/sort.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2018-04-04 17:07:21 +0200
committerDenys Vlasenko <vda.linux@googlemail.com>2018-04-04 17:07:21 +0200
commit759ca8a4cb57f797e92e02db84673057ce447125 (patch)
treecc90910a3aeddc28653c8bdb73c9e6b002b01103 /coreutils/sort.c
parentc29c2e60d8677cdec142a88609a3d040e4719439 (diff)
downloadbusybox-759ca8a4cb57f797e92e02db84673057ce447125.tar.gz
sort: move misplaced comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/sort.c')
-rw-r--r--coreutils/sort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/sort.c b/coreutils/sort.c
index b8bb6871d..9909a44a8 100644
--- a/coreutils/sort.c
+++ b/coreutils/sort.c
@@ -560,6 +560,8 @@ int sort_main(int argc UNUSED_PARAM, char **argv)
}
prev_len = len;
}
+#else
+//TODO: lighter version which only drops total dups if can_drop_dups == true
#endif
lines = xrealloc_vector(lines, 6, linecount);
lines[linecount++] = line;
@@ -582,8 +584,6 @@ int sort_main(int argc UNUSED_PARAM, char **argv)
}
return EXIT_SUCCESS;
}
-#else
-//TODO: lighter version which only drops total dups if can_drop_dups == true
#endif
/* For stable sort, store original line position beyond terminating NUL */