]> granicus.if.org Git - neomutt/commitdiff
tidy: add {}s
authorRichard Russon <rich@flatcap.org>
Mon, 22 Apr 2019 17:21:18 +0000 (18:21 +0100)
committerRichard Russon <rich@flatcap.org>
Wed, 24 Apr 2019 12:01:05 +0000 (13:01 +0100)
imap/browse.c
muttlib.c

index f6bd9508307a1e781bc9bd95880c9f81f7da030c..f8af6b08d4b443b5ec8d08983abee0f7dee1429f 100644 (file)
@@ -91,7 +91,9 @@ static void add_folder(char delim, char *folder, bool noselect, bool noinferiors
    * to browser.c */
   if (C_Mask && C_Mask->regex &&
       !((regexec(C_Mask->regex, relpath, 0, NULL, 0) == 0) ^ C_Mask->not))
+  {
     return;
+  }
 
   imap_qualify_path(tmp, sizeof(tmp), &conn_account, folder);
   (state->entry)[state->entrylen].name = mutt_str_strdup(tmp);
index c911b227080a55c9fea613b54480b4ea3ff8b2cf..fd10290ca47a32e1dce27b4e1e878adbba903892 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
@@ -696,7 +696,9 @@ void mutt_pretty_mailbox(char *buf, size_t buflen)
   }
   else if (strstr(p, "..") && ((scheme == U_UNKNOWN) || (scheme == U_FILE)) &&
            realpath(p, tmp))
+  {
     mutt_str_strfcpy(p, tmp, buflen - (p - buf));
+  }
 
   if ((len = mutt_str_startswith(buf, C_Folder, CASE_MATCH)) && (buf[len] == '/'))
   {