Skip to content
Snippets Groups Projects
Commit 29125375 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

indent fix

parent cfb32da1
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment