diff options
| author | 2018-04-26 00:23:31 +0530 | |
|---|---|---|
| committer | 2018-04-26 00:23:31 +0530 | |
| commit | 3e3427232458b15997f02abba920203f76dd4aed (patch) | |
| tree | f01f26883eae8af2a84955ec337d3805af81c0d1 | |
| parent | a6016e840751d30c90b8bc3c708e21d98292b2ab (diff) | |
| download | nnn-3e3427232458b15997f02abba920203f76dd4aed.tar.gz | |
Use a smaller buffer
| -rw-r--r-- | nnn.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -2295,7 +2295,7 @@ populate(char *path, char *oldname, char *fltr) static void redraw(char *path) { - static char buf[(NAME_MAX + 1) << 1] __attribute__ ((aligned)); + static char buf[NAME_MAX + 65] __attribute__ ((aligned)); static size_t ncols; static int nlines, i; static bool mode_changed; @@ -2394,11 +2394,11 @@ redraw(char *path) /* We need to show filename as it may be truncated in directory listing */ if (!cfg.blkorder) - snprintf(buf, (NAME_MAX + 1) << 1, "%d/%d %s[%s%s]", + snprintf(buf, NAME_MAX + 65, "%d/%d %s[%s%s]", cur + 1, ndents, sort, unescape(dents[cur].name, 0), get_file_sym(dents[cur].mode)); else { - i = snprintf(buf, 128, "%d/%d du: %s (%lu files) ", cur + 1, ndents, coolsize(dir_blocks << 9), num_files); - snprintf(buf + i, ((NAME_MAX + 1) << 1) - 128, "vol: %s free [%s%s]", + i = snprintf(buf, 64, "%d/%d du: %s (%lu files) ", cur + 1, ndents, coolsize(dir_blocks << 9), num_files); + snprintf(buf + i, NAME_MAX, "vol: %s free [%s%s]", coolsize(get_fs_free(path)), unescape(dents[cur].name, 0), get_file_sym(dents[cur].mode)); } |