diff options
author | rpj <rpj> | 2011-03-05 07:21:12 +0000 |
---|---|---|
committer | rpj <rpj> | 2011-03-05 07:21:12 +0000 |
commit | 85dfeaf6133e1b74eefed26cf76c3f8631c7dd1d (patch) | |
tree | 92e0f60e66f36f1ea1ca9cec4617d7f187698ecf /tests/spin4.c | |
parent | 275d03d3af64e4f5e1769584214f6fccc303456e (diff) |
Rework pthread_join result arg casting
Diffstat (limited to 'tests/spin4.c')
-rw-r--r-- | tests/spin4.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/spin4.c b/tests/spin4.c index b6d3059..2139ffd 100644 --- a/tests/spin4.c +++ b/tests/spin4.c @@ -63,7 +63,7 @@ void * func(void * arg) int main() { - long result = 0; + void* result = (void*)0; pthread_t t; int CPUs; struct _timeb sysTime; @@ -93,7 +93,7 @@ main() assert(pthread_spin_unlock(&lock) == 0); assert(pthread_join(t, (void *) &result) == 0); - assert(result > 1000); + assert((int)(size_t)result > 1000); assert(pthread_spin_destroy(&lock) == 0); |