summaryrefslogtreecommitdiff
path: root/orc-test
diff options
context:
space:
mode:
Diffstat (limited to 'orc-test')
-rw-r--r--orc-test/orcarray.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/orc-test/orcarray.c b/orc-test/orcarray.c
index 70283bf..01f3d58 100644
--- a/orc-test/orcarray.c
+++ b/orc-test/orcarray.c
@@ -77,7 +77,7 @@ orc_array_new (int n, int m, int element_size, int misalignment,
#else
data = malloc (ar->alloc_len + ALIGNMENT);
ar->alloc_data = data;
- ar->aligned_data = (void *)((((unsigned long)data) + (ALIGNMENT-1))&(~(ALIGNMENT-1)));
+ ar->aligned_data = (void *)((((size_t)data) + (ALIGNMENT-1))&(~(ALIGNMENT-1)));
#endif
#endif