Fix lint warnings

This commit is contained in:
Arun Prakash Jana 2019-03-21 21:09:55 +05:30
parent 73770bd67c
commit 30fb03e726
No known key found for this signature in database
GPG Key ID: A75979F35C080412
2 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,5 @@
--- ---
Checks: 'clang-diagnostic-*,clang-analyzer-*,readability-*,modernize-*,bugprone-*,misc-*,-misc-unused-parameters,google-runtime-int,-llvm-header-guard,fuchsia-restrict-system-includes,-clang-analyzer-valist.Uninitialized,-clang-analyzer-security.insecureAPI.rand,-clang-analyzer-alpha.*,-readability-magic-numbers,-readability-braces-around-statements,-readability-isolate-declaration' Checks: 'clang-diagnostic-*,clang-analyzer-*,readability-*,modernize-*,bugprone-*,misc-*,-misc-unused-parameters,google-runtime-int,-llvm-header-guard,fuchsia-restrict-system-includes,-clang-analyzer-valist.Uninitialized,-clang-analyzer-security.insecureAPI.rand,-clang-analyzer-alpha.*,-readability-magic-numbers,-readability-braces-around-statements,-readability-isolate-declaration,-bugprone-narrowing-conversions'
WarningsAsErrors: '*' WarningsAsErrors: '*'
HeaderFilterRegex: '.*(?<!lookup3.c)$' HeaderFilterRegex: '.*(?<!lookup3.c)$'
FormatStyle: 'file' FormatStyle: 'file'

View File

@ -888,7 +888,7 @@ static void resetcpind(void)
/* Initialize curses mode */ /* Initialize curses mode */
static bool initcurses(void) static bool initcurses(void)
{ {
int i; short i;
if (cfg.picker) { if (cfg.picker) {
if (!newterm(NULL, stderr, stdin)) { if (!newterm(NULL, stderr, stdin)) {
@ -1385,8 +1385,12 @@ static int entrycmp(const void *va, const void *vb)
} }
/* Do the actual sorting */ /* Do the actual sorting */
if (cfg.mtimeorder) if (cfg.mtimeorder) {
return pb->t - pa->t; if (pb->t >= pa->t)
return (int)(pb->t - pa->t);
return -1;
}
if (cfg.sizeorder) { if (cfg.sizeorder) {
if (pb->size > pa->size) if (pb->size > pa->size)
@ -2311,9 +2315,9 @@ static size_t get_fs_info(const char *path, bool type)
return 0; return 0;
if (type == CAPACITY) 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) static bool show_mediainfo(const char *fpath, const char *arg)