proper fix for compiler warning

This commit is contained in:
Yang Tse 2007-04-13 08:45:07 +00:00
parent b3401ddbad
commit b039d883e5
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ static void decodeQuantum(unsigned char *dest, const char *src)
char *found;
for(i = 0; i < 4; i++) {
if((found = strchr(table64, src[i])) != 0)
if((found = strchr(table64, src[i])) != NULL)
x = (x << 6) + (unsigned int)(found - table64);
else if(src[i] == '=')
x = (x << 6);