Fixed sortlines

This commit is contained in:
Claudio Maggioni 2019-08-04 14:28:56 +02:00
parent 4b96df1d81
commit 10357425fc
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ void quicksort_string(char* strings[static 1], size_t start, size_t end) {
putchar('\n');
#endif
if (end - start <= 2) {
if (end - start < 2) {
#ifdef DEBUG
puts("returning");
#endif