diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-04 17:07:21 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-04-04 17:07:21 +0200 |
| commit | 759ca8a4cb57f797e92e02db84673057ce447125 (patch) | |
| tree | cc90910a3aeddc28653c8bdb73c9e6b002b01103 /coreutils | |
| parent | c29c2e60d8677cdec142a88609a3d040e4719439 (diff) | |
| download | busybox-w32-759ca8a4cb57f797e92e02db84673057ce447125.tar.gz busybox-w32-759ca8a4cb57f797e92e02db84673057ce447125.tar.bz2 busybox-w32-759ca8a4cb57f797e92e02db84673057ce447125.zip | |
sort: move misplaced comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils')
| -rw-r--r-- | coreutils/sort.c | 4 |
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) | |||
| 560 | } | 560 | } |
| 561 | prev_len = len; | 561 | prev_len = len; |
| 562 | } | 562 | } |
| 563 | #else | ||
| 564 | //TODO: lighter version which only drops total dups if can_drop_dups == true | ||
| 563 | #endif | 565 | #endif |
| 564 | lines = xrealloc_vector(lines, 6, linecount); | 566 | lines = xrealloc_vector(lines, 6, linecount); |
| 565 | lines[linecount++] = line; | 567 | lines[linecount++] = line; |
| @@ -582,8 +584,6 @@ int sort_main(int argc UNUSED_PARAM, char **argv) | |||
| 582 | } | 584 | } |
| 583 | return EXIT_SUCCESS; | 585 | return EXIT_SUCCESS; |
| 584 | } | 586 | } |
| 585 | #else | ||
| 586 | //TODO: lighter version which only drops total dups if can_drop_dups == true | ||
| 587 | #endif | 587 | #endif |
| 588 | 588 | ||
| 589 | /* For stable sort, store original line position beyond terminating NUL */ | 589 | /* For stable sort, store original line position beyond terminating NUL */ |
