From 5c3a796e55a2de822692810d0ac77c6589b0f10e Mon Sep 17 00:00:00 2001 From: NRK Date: Fri, 17 Jun 2022 22:16:37 +0600 Subject: [ci]: slience some clang-tidy warnings the warnings on r_readdir(), img_load_gif() and strcpy seems to be false positives. the warning about fmt being unused is valid, but not worth fixing with additional #ifdef guards. use `assert` to silence the false positive cases when possible, otherwise use a NOLINT comment with an explanation. --- util.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'util.c') diff --git a/util.c b/util.c index 48bf61e..9c97dda 100644 --- a/util.c +++ b/util.c @@ -19,6 +19,7 @@ #include "nsxiv.h" +#include #include #include #include @@ -178,6 +179,7 @@ char* r_readdir(r_dir_t *rdir, bool skip_dotfiles) if (rdir->recursive && rdir->stlen > 0) { /* open next subdirectory */ + assert(rdir->dir != NULL); closedir(rdir->dir); if (rdir->d != 0) free(rdir->name); -- cgit v1.2.3-70-g09d2