]> granicus.if.org Git - curl/commitdiff
imap: checksrc: remove space after while before paren
authorDaniel Stenberg <daniel@haxx.se>
Sat, 7 Nov 2015 22:21:29 +0000 (23:21 +0100)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 7 Nov 2015 22:21:29 +0000 (23:21 +0100)
lib/imap.c

index a9022ed114d195a2b9793584ac4225158f0974cd..1157d8fc14ff940bbc0eb8c2d413aecc33e81c7e 100644 (file)
@@ -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;