Extra space for size column

This commit is contained in:
Arun Prakash Jana 2020-02-28 00:00:44 +05:30
parent 993ea99b76
commit c9f9ca32dd
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 1 additions and 1 deletions

View File

@ -3228,7 +3228,7 @@ static void printent_long(const struct entry *ent, uint namecols, bool sel)
++namecols;
size = coolsize(cfg.blkorder ? ent->blocks << blk_shift : ent->size);
len = 9 - (uint)strlen(size);
len = 10 - (uint)strlen(size);
while (--len)
addch(' ');
addstr(size);