error=parentheses
This commit is contained in:
parent
320585380e
commit
3606580178
|
@ -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 */
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue