error=parentheses

This commit is contained in:
rusefillc 2022-12-03 01:12:31 -05:00
parent 320585380e
commit 3606580178
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ int djb2lowerCase(const char *str) {
unsigned long hash = 5381;
int c;
while (c = *str++) {
while ( (c = *str++) ) {
c = TO_LOWER(c);
hash = ((hash << 5) + hash) + c; /* hash * 33 + c */
}