mirror of
https://github.com/curl/curl.git
synced 2026-07-15 21:27:21 +03:00
indent fix
This commit is contained in:
parent
cfb32da198
commit
2912537533
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue