Remove unnecessary leading line whitespace before a tab

This commit is contained in:
Landon Curt Noll
2021-11-07 20:14:28 -08:00
parent 2ca6e789ca
commit 27f977b545
45 changed files with 144 additions and 144 deletions

4
str.c
View File

@@ -939,9 +939,9 @@ stringcaserel(STRING *s1, STRING *s2)
c2++;
}
if ( (tolower(*c1)) > (tolower(*c2)))
return 1;
return 1;
if ( (tolower(*c1)) < (tolower(*c2)))
return -1;
return -1;
if (i1 < i2) return -1;
return (i1 > i2);
}