diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-01-06 12:41:33 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-01-06 12:41:33 +0000 |
commit | 29125375337390079a2c4ae4519d9cdcec87d401 (patch) | |
tree | 1968130a6ada525f44e3325b6c1fd6bbe844c0bf /lib | |
parent | cfb32da198dd3917082d40de6d0ad88b431002fb (diff) |
indent fix
Diffstat (limited to 'lib')
-rw-r--r-- | lib/base64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/base64.c b/lib/base64.c index f92f4f25e..852e62bd3 100644 --- a/lib/base64.c +++ b/lib/base64.c @@ -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; |