diff options
author | 2019-01-24 21:53:53 +0530 | |
---|---|---|
committer | 2019-01-24 21:53:53 +0530 | |
commit | 14639239de9d078c18a256bd6706eaa12cdcff5f (patch) | |
tree | 2b212b9e4411c4a001c31d957c121abdd0724a47 /src | |
parent | 223045fc992db0d7bd34b18cf6c69cdd46b2d517 (diff) | |
download | nnn-14639239de9d078c18a256bd6706eaa12cdcff5f.tar.gz |
Remove redundant function call
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2304,7 +2304,7 @@ static bool show_help(char *path) dprintf(fd, "\nVOLUME: %s of ", coolsize(get_fs_info(path, FREE))); dprintf(fd, "%s free\n\n", coolsize(get_fs_info(path, CAPACITY))); - if (getenv(env_cfg[NNN_BMS])) { + if (bookmark[0].loc) { dprintf(fd, "BOOKMARKS\n"); for (; i < BM_MAX; ++i) if (bookmark[i].key) |