diff options
author | David Robillard <d@drobilla.net> | 2023-02-04 19:25:22 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-02-04 19:25:22 -0500 |
commit | 5a9787b4247c6735cc3213944945e8983002edf9 (patch) | |
tree | 635a8711a53b9e50d7dcd24dc4acefefce694c3d /test/test_btree.c | |
parent | c4b3814edad510c6c124089822bd5506f9334411 (diff) | |
download | zix-5a9787b4247c6735cc3213944945e8983002edf9.tar.gz zix-5a9787b4247c6735cc3213944945e8983002edf9.tar.bz2 zix-5a9787b4247c6735cc3213944945e8983002edf9.zip |
Suppress/fix clang-tidy warnings on Windows
Diffstat (limited to 'test/test_btree.c')
-rw-r--r-- | test/test_btree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_btree.c b/test/test_btree.c index a6f724a..7fd73bc 100644 --- a/test/test_btree.c +++ b/test/test_btree.c @@ -97,7 +97,7 @@ test_fail(ZixBTree* t, const char* fmt, ...) return EXIT_SUCCESS; } - va_list args; + va_list args; // NOLINT(cppcoreguidelines-init-variables) va_start(args, fmt); fprintf(stderr, "error: "); vfprintf(stderr, fmt, args); |