Removed the space between function names and the opening parenthesis.
[mmh] / sbr / getfolder.c
index 02910c3..9a6b18b 100644 (file)
@@ -17,13 +17,13 @@ getfolder(int wantcurrent)
        /*
        ** If wantcurrent == 1, then try the current folder first
        */
-       if (wantcurrent && (folder = context_find (pfolder)) && *folder != '\0')
+       if (wantcurrent && (folder = context_find(pfolder)) && *folder != '\0')
                return folder;
 
        /*
        ** Else try the Inbox profile entry
        */
-       if ((folder = context_find (inbox)) && *folder != '\0')
+       if ((folder = context_find(inbox)) && *folder != '\0')
                return folder;
 
        /*