From 29125375337390079a2c4ae4519d9cdcec87d401 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 6 Jan 2003 12:41:33 +0000 Subject: [PATCH] indent fix --- lib/base64.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/base64.c b/lib/base64.c index f92f4f25e5..852e62bd3c 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;