Fix typo in name_string.c that caused sorting errors for second test

This commit is contained in:
Aaron Helton
2019-10-23 21:58:30 -04:00
parent 618647d738
commit 224916923c

View File

@@ -145,7 +145,7 @@ static char lowercase(char c)
{
return c;
}
return (char) (c - 32);
return (char) (c + 32);
}
int compare_on_alphabet(const string *str, const string *other)