sort: move misplaced comment

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko 2018-04-04 17:07:21 +02:00
parent c29c2e60d8
commit 759ca8a4cb

View File

@ -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 */