aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)
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 */