diff options
author | David Robillard <d@drobilla.net> | 2020-07-15 21:04:58 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-07-15 22:34:03 +0200 |
commit | 5a0ddd58f7f7098a088afee22d479eec2d8cc958 (patch) | |
tree | c50669156702ec0ccd34cce9b87d309d32f53d0d /lv2/atom/atom-test-utils.c | |
parent | 2f7ffa585fbab18976ecf1f69aa9a28ed04a13ac (diff) | |
download | lv2-5a0ddd58f7f7098a088afee22d479eec2d8cc958.tar.xz |
Fix incorrect printf format specifiers
Diffstat (limited to 'lv2/atom/atom-test-utils.c')
-rw-r--r-- | lv2/atom/atom-test-utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lv2/atom/atom-test-utils.c b/lv2/atom/atom-test-utils.c index a9ab74b..50e8887 100644 --- a/lv2/atom/atom-test-utils.c +++ b/lv2/atom/atom-test-utils.c @@ -17,6 +17,7 @@ #include "lv2/atom/atom.h" #include "lv2/atom/forge.h" #include "lv2/atom/util.h" +#include "lv2/log/log.h" #include "lv2/urid/urid.h" #include <stdarg.h> @@ -59,6 +60,7 @@ free_urid_map(void) free(uris); } +LV2_LOG_FUNC(1, 2) static int test_fail(const char* fmt, ...) { |