sort: move misplaced comment
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
diff --git a/coreutils/sort.c b/coreutils/sort.c
index b8bb687..9909a44 100644
--- a/coreutils/sort.c
+++ b/coreutils/sort.c
@@ -560,6 +560,8 @@
}
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 @@
}
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 */