This commit is contained in:
Matthew Kennedy 2024-04-01 16:20:52 -07:00
parent 77fd7627a7
commit 138a091b5a
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ int djb2lowerCase(const char *str) {
unsigned long hash = 5381;
while (char c = *str++) {
hash = 32 * hash + mytolower(c);
hash = 33 * hash + mytolower(c);
}
return hash;