mirror of
https://git.busybox.net/busybox
synced 2026-01-31 16:43:21 +00:00
sort: move misplaced comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
c29c2e60d8
commit
759ca8a4cb
1 changed files with 2 additions and 2 deletions
|
|
@ -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 */
|
||||
|
|
|
|||
Loading…
Reference in a new issue