From: Daniel Stenberg Date: Mon, 6 Jan 2003 12:41:33 +0000 (+0000) Subject: indent fix X-Git-Tag: curl-7_10_3~39 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29125375337390079a2c4ae4519d9cdcec87d401;p=curl indent fix --- 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;