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. --- autoreload.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'autoreload.c') diff --git a/autoreload.c b/autoreload.c index d51e008..47751d5 100644 --- a/autoreload.c +++ b/autoreload.c @@ -79,7 +79,7 @@ void arl_setup(arl_t *arl, const char *filepath) if (base != NULL) { arl->filename[++base - filepath] = '\0'; add_watch(arl->fd, &arl->wd_dir, arl->filename, IN_CREATE | IN_MOVED_TO); - strcpy(arl->filename, base); + strcpy(arl->filename, base); /* NOLINT: basename will always be shorter than fullpath */ } } -- cgit v1.2.3-70-g09d2