summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorJason Evans <jasone@canonware.com>2016-10-28 04:29:00 (GMT)
committerJason Evans <jasone@canonware.com>2016-10-28 04:29:00 (GMT)
commit17aa187f6b3c5c320653167acf1e85d3d8645e62 (patch)
tree743d20e3045cb16b0e223b08d76c58b55d9a8ed3 /test
parent48d4adfbeb32fcc7f455547d89641cd1fc459361 (diff)
downloadjemalloc-17aa187f6b3c5c320653167acf1e85d3d8645e62.zip
jemalloc-17aa187f6b3c5c320653167acf1e85d3d8645e62.tar.gz
jemalloc-17aa187f6b3c5c320653167acf1e85d3d8645e62.tar.bz2
Add cast to silence (harmless) conversion warning.
Diffstat (limited to 'test')
-rw-r--r--test/unit/tsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/tsd.c b/test/unit/tsd.c
index 4e2622a..d5f96ac 100644
--- a/test/unit/tsd.c
+++ b/test/unit/tsd.c
@@ -79,7 +79,7 @@ thd_start(void *arg)
TEST_BEGIN(test_tsd_main_thread)
{
- thd_start((void *) 0xa5f3e329);
+ thd_start((void *)(uintptr_t)0xa5f3e329);
}
TEST_END