From: Daniel Stenberg Date: Sat, 7 Nov 2015 22:21:29 +0000 (+0100) Subject: imap: checksrc: remove space after while before paren X-Git-Tag: curl-7_46_0~97 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3c85405d09c32f19c902e7050210ebbb7f6878c;p=curl imap: checksrc: remove space after while before paren --- 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;