From e1de8e3c33257b4e7d6b98767a67414efc31b6c7 Mon Sep 17 00:00:00 2001 From: rpj Date: Fri, 4 Mar 2011 08:03:46 +0000 Subject: Casting fixups --- tests/priority1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/priority1.c') diff --git a/tests/priority1.c b/tests/priority1.c index c270e99..66c5a4c 100644 --- a/tests/priority1.c +++ b/tests/priority1.c @@ -91,7 +91,7 @@ func(void * arg) assert(pthread_getschedparam(threadID, &policy, ¶m) == 0); assert(policy == SCHED_OTHER); - return (void *) (param.sched_priority); + return (void *) (size_t)(param.sched_priority); } void * -- cgit v1.2.3