Fixed sortlines
This commit is contained in:
parent
4b96df1d81
commit
10357425fc
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ void quicksort_string(char* strings[static 1], size_t start, size_t end) {
|
||||||
putchar('\n');
|
putchar('\n');
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (end - start <= 2) {
|
if (end - start < 2) {
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
puts("returning");
|
puts("returning");
|
||||||
#endif
|
#endif
|
||||||
|
|
Reference in a new issue