aboutsummaryrefslogtreecommitdiffstats
path: root/lv2/atom/atom-test.c
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-06-15 13:01:46 -0400
committerDavid Robillard <d@drobilla.net>2022-07-17 17:08:37 -0400
commitd42276f10266d826e20d51a5cfb490bddc2f6e89 (patch)
tree30b145528a0fd77151c6566b7a60fd859333998a /lv2/atom/atom-test.c
parentf723513288fe2cd3a5b59a94b470bc43e456e7a3 (diff)
downloadlv2-d42276f10266d826e20d51a5cfb490bddc2f6e89.tar.xz
Make test logging portable to MinGW and old MS runtimes
Diffstat (limited to 'lv2/atom/atom-test.c')
-rw-r--r--lv2/atom/atom-test.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lv2/atom/atom-test.c b/lv2/atom/atom-test.c
index 64f8953..230a7cd 100644
--- a/lv2/atom/atom-test.c
+++ b/lv2/atom/atom-test.c
@@ -20,7 +20,6 @@
#include "lv2/atom/util.h"
#include "lv2/urid/urid.h"
-#include <inttypes.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
@@ -73,7 +72,7 @@ main(void)
LV2_Atom_Long* two = (LV2_Atom_Long*)lv2_atom_forge_deref(
&forge, lv2_atom_forge_long(&forge, 2));
if (two->body != 2) {
- return test_fail("%" PRId64 " != 2\n", two->body);
+ return test_fail("%ld != 2\n", (long)two->body);
}
// eg_three = (Float)3.0