aboutsummaryrefslogtreecommitdiffstats
path: root/test/include
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2015-07-17 18:12:44 -0700
committerJason Evans <jasone@canonware.com>2015-07-17 18:12:44 -0700
commit218b15cc299ccb8114e52df3eb0f7a9dc810a4b1 (patch)
tree92c4b2735b59d793e7af6eeb81cba4fd0dbf1300 /test/include
parentf2bc85298c1cd6f4e95fbbeeb7ccc32ff52a1d8f (diff)
downloadplatform_external_jemalloc_new-218b15cc299ccb8114e52df3eb0f7a9dc810a4b1.tar.gz
platform_external_jemalloc_new-218b15cc299ccb8114e52df3eb0f7a9dc810a4b1.tar.bz2
platform_external_jemalloc_new-218b15cc299ccb8114e52df3eb0f7a9dc810a4b1.zip
Fix more MinGW build warnings.
Diffstat (limited to 'test/include')
-rw-r--r--test/include/test/test.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/test/include/test/test.h b/test/include/test/test.h
index f55bafce..3aa08355 100644
--- a/test/include/test/test.h
+++ b/test/include/test/test.h
@@ -133,30 +133,30 @@
<=, "ju", __VA_ARGS__)
#define assert_zd_eq(a, b, ...) assert_cmp(ssize_t, a, b, ==, \
- !=, "zd", __VA_ARGS__)
+ !=, PRIzd, __VA_ARGS__)
#define assert_zd_ne(a, b, ...) assert_cmp(ssize_t, a, b, !=, \
- ==, "zd", __VA_ARGS__)
+ ==, PRIzd, __VA_ARGS__)
#define assert_zd_lt(a, b, ...) assert_cmp(ssize_t, a, b, <, \
- >=, "zd", __VA_ARGS__)
+ >=, PRIzd, __VA_ARGS__)
#define assert_zd_le(a, b, ...) assert_cmp(ssize_t, a, b, <=, \
- >, "zd", __VA_ARGS__)
+ >, PRIzd, __VA_ARGS__)
#define assert_zd_ge(a, b, ...) assert_cmp(ssize_t, a, b, >=, \
- <, "zd", __VA_ARGS__)
+ <, PRIzd, __VA_ARGS__)
#define assert_zd_gt(a, b, ...) assert_cmp(ssize_t, a, b, >, \
- <=, "zd", __VA_ARGS__)
+ <=, PRIzd, __VA_ARGS__)
#define assert_zu_eq(a, b, ...) assert_cmp(size_t, a, b, ==, \
- !=, "zu", __VA_ARGS__)
+ !=, PRIzu, __VA_ARGS__)
#define assert_zu_ne(a, b, ...) assert_cmp(size_t, a, b, !=, \
- ==, "zu", __VA_ARGS__)
+ ==, PRIzu, __VA_ARGS__)
#define assert_zu_lt(a, b, ...) assert_cmp(size_t, a, b, <, \
- >=, "zu", __VA_ARGS__)
+ >=, PRIzu, __VA_ARGS__)
#define assert_zu_le(a, b, ...) assert_cmp(size_t, a, b, <=, \
- >, "zu", __VA_ARGS__)
+ >, PRIzu, __VA_ARGS__)
#define assert_zu_ge(a, b, ...) assert_cmp(size_t, a, b, >=, \
- <, "zu", __VA_ARGS__)
+ <, PRIzu, __VA_ARGS__)
#define assert_zu_gt(a, b, ...) assert_cmp(size_t, a, b, >, \
- <=, "zu", __VA_ARGS__)
+ <=, PRIzu, __VA_ARGS__)
#define assert_d32_eq(a, b, ...) assert_cmp(int32_t, a, b, ==, \
!=, PRId32, __VA_ARGS__)