summaryrefslogtreecommitdiffstats
path: root/browser.c
diff options
context:
space:
mode:
authorKevin McCarthy <kevin@8t8.us>2019-01-05 12:37:16 -0800
committerKevin McCarthy <kevin@8t8.us>2019-01-05 12:37:16 -0800
commit177f12acaf3c8b9864c707fbb01b95357544c2ca (patch)
treef9ac6b03d6ea99bd418a36885d421c41118e1a1f /browser.c
parentefa3afb539b9672ebd6e64cb0c16b98c5f6b8a60 (diff)
Fix a few indenting issues.
These are mostly the result of making the formatting changes commit after the indent changes commit.
Diffstat (limited to 'browser.c')
-rw-r--r--browser.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/browser.c b/browser.c
index cf99a39f..cb30f829 100644
--- a/browser.c
+++ b/browser.c
@@ -231,14 +231,14 @@ folder_format_str (char *dest, size_t destlen, size_t col, int cols, char op, co
snprintf (fn, sizeof (fn), "%s%s", s,
folder->ff->local ?
- (S_ISLNK (folder->ff->mode) ?
- "@" :
- (S_ISDIR (folder->ff->mode) ?
- "/" :
- ((folder->ff->mode & S_IXUSR) != 0 ?
- "*" :
- ""))) :
- "");
+ (S_ISLNK (folder->ff->mode) ?
+ "@" :
+ (S_ISDIR (folder->ff->mode) ?
+ "/" :
+ ((folder->ff->mode & S_IXUSR) != 0 ?
+ "*" :
+ ""))) :
+ "");
mutt_format_s (dest, destlen, fmt, fn);
break;