From ad6e28073c985a42e8b15d2234baa7ef67ffcb35 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 5 Nov 2007 09:45:09 +0000 Subject: removed space after if and while before the parenthesis for better source code consistency --- lib/base64.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/base64.c') diff --git a/lib/base64.c b/lib/base64.c index 912aaf050..9edc83212 100644 --- a/lib/base64.c +++ b/lib/base64.c @@ -101,7 +101,7 @@ size_t Curl_base64_decode(const char *src, unsigned char **outptr) numQuantums = (length + equalsTerm) / 4; /* Don't allocate a buffer if the decoded length is 0 */ - if (numQuantums <= 0) + if(numQuantums <= 0) return 0; rawlen = (numQuantums * 3) - equalsTerm; -- cgit v1.2.3