summaryrefslogtreecommitdiff
path: root/tests/inherit1.c
diff options
context:
space:
mode:
authorrpj <rpj>2011-03-04 08:03:46 +0000
committerrpj <rpj>2011-03-04 08:03:46 +0000
commite1de8e3c33257b4e7d6b98767a67414efc31b6c7 (patch)
tree1942d5037d1cf5077c62f2dce89cf60cd9f96399 /tests/inherit1.c
parente470da85f7b9426eea03d66086c2822bf29e9b05 (diff)
Casting fixups
Diffstat (limited to 'tests/inherit1.c')
-rw-r--r--tests/inherit1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/inherit1.c b/tests/inherit1.c
index 482a5a8..1933bb1 100644
--- a/tests/inherit1.c
+++ b/tests/inherit1.c
@@ -89,7 +89,7 @@ void * func(void * arg)
struct sched_param param;
assert(pthread_getschedparam(pthread_self(), &policy, &param) == 0);
- return (void *) param.sched_priority;
+ return (void *) (size_t)param.sched_priority;
}