From: Denys Vlasenko Date: Wed, 4 Apr 2018 15:07:21 +0000 (+0200) Subject: sort: move misplaced comment X-Git-Tag: 1_29_0~145 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=759ca8a4cb57f797e92e02db84673057ce447125;p=oweals%2Fbusybox.git sort: move misplaced comment Signed-off-by: Denys Vlasenko --- 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 */