From e1de8e3c33257b4e7d6b98767a67414efc31b6c7 Mon Sep 17 00:00:00 2001 From: rpj Date: Fri, 4 Mar 2011 08:03:46 +0000 Subject: Casting fixups --- tests/cleanup3.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/cleanup3.c') diff --git a/tests/cleanup3.c b/tests/cleanup3.c index b595ab4..4187396 100644 --- a/tests/cleanup3.c +++ b/tests/cleanup3.c @@ -136,7 +136,7 @@ mythread(void * arg) #pragma inline_depth() #endif - return (void *) result; + return (void *) (size_t)result; } int @@ -185,7 +185,7 @@ main() int fail = 0; int result = 0; - assert(pthread_join(t[i], (void **) &result) == 0); + assert(pthread_join(t[i], (void *) &result) == 0); fail = (result != 0); -- cgit v1.2.3