From e3c85405d09c32f19c902e7050210ebbb7f6878c Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 7 Nov 2015 23:21:29 +0100 Subject: [PATCH] imap: checksrc: remove space after while before paren --- lib/imap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/imap.c b/lib/imap.c index a9022ed11..1157d8fc1 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -1840,7 +1840,7 @@ static char *imap_atom(const char *str, bool escape_only) else if(!escape_only) { const char *p3 = atom_specials; - while (*p3 && !others_exists) { + while(*p3 && !others_exists) { if(*p1 == *p3) others_exists = TRUE;