From ada4695bb614154e46e8c6e5f2079f1cdbf7cd35 Mon Sep 17 00:00:00 2001 From: Luuk van Baal Date: Wed, 7 Apr 2021 23:10:12 +0200 Subject: [PATCH] ind to char --- src/nnn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nnn.c b/src/nnn.c index 5cd6e236..140be25e 100644 --- a/src/nnn.c +++ b/src/nnn.c @@ -3747,7 +3747,7 @@ static void print_details(const struct entry *ent) char *size = coolsize(cfg.blkorder ? ent->blocks << blk_shift : ent->size); printw("%*c%s", 9 - (uint_t)xstrlen(size), ' ', size); } else - printw("%*c%s", 8, ' ', get_detail_ind(ent->mode)); + printw("%*c%c", 8, ' ', get_detail_ind(ent->mode)); } static void printent_long(const struct entry *ent, uint_t namecols, bool sel)