Fix a warning.

This commit is contained in:
David Given 2016-12-12 21:17:01 +01:00
parent 04e54d6cb1
commit 0e020132f8

View file

@ -123,7 +123,7 @@ struct idf* str2idf(char tg[], int cpy)
int size;
IDF_STARTHASH(hash);
while (c = *cp++)
while ((c = *cp++))
{
IDF_ENHASH(hash, c);
}