summaryrefslogtreecommitdiff
path: root/test/scudo/mismatch.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/scudo/mismatch.cpp')
-rw-r--r--test/scudo/mismatch.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/scudo/mismatch.cpp b/test/scudo/mismatch.cpp
index 2d3d198af640..54cdafc86ee6 100644
--- a/test/scudo/mismatch.cpp
+++ b/test/scudo/mismatch.cpp
@@ -30,7 +30,7 @@ int main(int argc, char **argv)
free((void *)p);
}
if (!strcmp(argv[1], "memaligndel")) {
- int *p = (int *)memalign(0x10, 0x10);
+ int *p = (int *)memalign(16, 16);
if (!p)
return 1;
delete p;