diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-11-07 23:21:29 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-11-07 23:21:29 +0100 |
commit | e3c85405d09c32f19c902e7050210ebbb7f6878c (patch) | |
tree | d66f08167b6b4ccf0fde142033f29bda29283a5e /lib/imap.c | |
parent | 2581585961d2cffde0c98a57c836aa31b649adf7 (diff) | |
download | curl-e3c85405d09c32f19c902e7050210ebbb7f6878c.tar.gz |
imap: checksrc: remove space after while before paren
Diffstat (limited to 'lib/imap.c')
-rw-r--r-- | lib/imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |