summaryrefslogtreecommitdiffstats
path: root/test/integration/rallocx.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/rallocx.c')
-rw-r--r--test/integration/rallocx.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/integration/rallocx.c b/test/integration/rallocx.c
index ee21aed..e78e02f 100644
--- a/test/integration/rallocx.c
+++ b/test/integration/rallocx.c
@@ -95,7 +95,8 @@ TEST_BEGIN(test_zero)
"Expected zeroed memory");
}
if (psz != qsz) {
- memset(q+psz, FILL_BYTE, qsz-psz);
+ memset((void *)(uintptr_t)q+psz, FILL_BYTE,
+ qsz-psz);
psz = qsz;
}
p = q;
@@ -159,8 +160,9 @@ TEST_BEGIN(test_lg_align_and_zero)
} else {
assert_false(validate_fill(q, 0, 0, MAX_VALIDATE),
"Expected zeroed memory");
- assert_false(validate_fill(q+sz-MAX_VALIDATE, 0, 0,
- MAX_VALIDATE), "Expected zeroed memory");
+ assert_false(validate_fill(
+ (void *)(uintptr_t)q+sz-MAX_VALIDATE,
+ 0, 0, MAX_VALIDATE), "Expected zeroed memory");
}
p = q;
}