aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/nnn.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/nnn.c b/src/nnn.c
index 0fca4d7..9c2dc13 100644
--- a/src/nnn.c
+++ b/src/nnn.c
@@ -2417,11 +2417,8 @@ static void printent_long(const struct entry *ent, int sel, uint namecols)
coolsize(cfg.blkorder ? ent->blocks << BLK_SHIFT : ent->size), pname);
break;
case S_IFDIR:
- if (cfg.blkorder)
- printw("%c%-16.16s %s %8.8s/ %s/\n",
- cp, timebuf, permbuf, coolsize(ent->blocks << BLK_SHIFT), pname);
- else
- printw("%c%-16.16s %s / %s/\n", cp, timebuf, permbuf, pname);
+ printw("%c%-16.16s %s %8.8s %s/\n", cp, timebuf, permbuf,
+ coolsize(cfg.blkorder ? ent->blocks << BLK_SHIFT : ent->size), pname);
break;
case S_IFLNK:
printw("%c%-16.16s %s @ %s@\n", cp, timebuf, permbuf, pname);