mirror of
https://github.com/curl/curl.git
synced 2025-01-18 14:04:30 +08:00
indent fix
This commit is contained in:
parent
cfb32da198
commit
2912537533
@ -61,8 +61,8 @@ static void decodeQuantum(unsigned char *dest, char *src)
|
||||
x = (x << 6) + 62;
|
||||
else if(src[i] == '/')
|
||||
x = (x << 6) + 63;
|
||||
else if(src[i] == '=')
|
||||
x = (x << 6);
|
||||
else if(src[i] == '=')
|
||||
x = (x << 6);
|
||||
}
|
||||
|
||||
dest[2] = (unsigned char)(x & 255); x >>= 8;
|
||||
|
Loading…
Reference in New Issue
Block a user