aboutsummaryrefslogtreecommitdiff
path: root/pthreads/tests/inherit1.c
diff options
context:
space:
mode:
Diffstat (limited to 'pthreads/tests/inherit1.c')
-rw-r--r--pthreads/tests/inherit1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pthreads/tests/inherit1.c b/pthreads/tests/inherit1.c
index 482a5a884..24ceec557 100644
--- a/pthreads/tests/inherit1.c
+++ b/pthreads/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;
}
@@ -169,7 +169,7 @@ main()
assert(pthread_attr_setschedparam(&attr, &param) == 0);
assert(pthread_create(&t, &attr, func, NULL) == 0);
pthread_join(t, &result);
- assert((int) result == mainParam.sched_priority);
+ assert((int)(size_t) result == mainParam.sched_priority);
}
}