mirror of
https://github.com/curl/curl.git
synced 2026-08-26 00:43:52 +03:00
fix compiler warning
This commit is contained in:
parent
4b5a65455e
commit
038fe54e21
3 changed files with 3 additions and 3 deletions
|
|
@ -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])))
|
||||
if((found = strchr(table64, src[i])) != 0)
|
||||
x = (x << 6) + (unsigned int)(found - table64);
|
||||
else if(src[i] == '=')
|
||||
x = (x << 6);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue