diff options
author | 2019-03-21 21:09:55 +0530 | |
---|---|---|
committer | 2019-03-21 22:25:27 +0530 | |
commit | 30fb03e7265b68624ded6a6e3658353be012f265 (patch) | |
tree | 3b20a50e0fc3adec7aeb3151c04de62f98d12e33 /src | |
parent | 73770bd67caf5ef3d3d60bc5e682718570db8b72 (diff) | |
download | nnn-30fb03e7265b68624ded6a6e3658353be012f265.tar.gz |
Fix lint warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 14 |
1 files changed, 9 insertions, 5 deletions
@@ -888,7 +888,7 @@ static void resetcpind(void) /* Initialize curses mode */ static bool initcurses(void) { - int i; + short i; if (cfg.picker) { if (!newterm(NULL, stderr, stdin)) { @@ -1385,8 +1385,12 @@ static int entrycmp(const void *va, const void *vb) } /* Do the actual sorting */ - if (cfg.mtimeorder) - return pb->t - pa->t; + if (cfg.mtimeorder) { + if (pb->t >= pa->t) + return (int)(pb->t - pa->t); + + return -1; + } if (cfg.sizeorder) { if (pb->size > pa->size) @@ -2311,9 +2315,9 @@ static size_t get_fs_info(const char *path, bool type) return 0; if (type == CAPACITY) - return svb.f_blocks << ffs(svb.f_bsize >> 1); + return svb.f_blocks << ffs((int)(svb.f_bsize >> 1)); - return svb.f_bavail << ffs(svb.f_frsize >> 1); + return svb.f_bavail << ffs((int)(svb.f_frsize >> 1)); } static bool show_mediainfo(const char *fpath, const char *arg) |