From: Arun Prakash Jana Date: Fri, 19 Oct 2018 10:33:16 +0000 (+0530) Subject: Use au for apparent size X-Git-Tag: v2.1~93 X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=d4f9bcb21211b21fdb21f50e4e7e1e6228d6523c;p=nnn.git Use au for apparent size --- diff --git a/nnn.c b/nnn.c index 17a104a8..ecc3fab8 100644 --- a/nnn.c +++ b/nnn.c @@ -2439,11 +2439,11 @@ redraw(char *path) i = snprintf(buf, 64, "%d/%d ", cur + 1, ndents); if (cfg.apparentsz) - buf[i++] = 'a', buf[i++] = 'p'; + buf[i++] = 'a'; else - buf[i++] = 'd', buf[i++] = 'u'; + buf[i++] = 'd'; - i += snprintf(buf + i, 64, ": %s (%lu files) ", coolsize(dir_blocks << BLK_SHIFT), num_files); + i += snprintf(buf + i, 64, "u: %s (%lu files) ", coolsize(dir_blocks << BLK_SHIFT), num_files); snprintf(buf + i, NAME_MAX, "vol: %s free [%s%s]", coolsize(get_fs_info(path, FREE)), unescape(dents[cur].name, 0), get_file_sym(dents[cur].mode)); }