diff options
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 93e8d90..b6d3059 100644 --- a/tests/spin4.c +++ b/tests/spin4.c @@ -57,7 +57,7 @@ void * func(void * arg) assert(pthread_spin_unlock(&lock) == 0); PTW32_FTIME(&currSysTimeStop); - return (void *) GetDurationMilliSecs(currSysTimeStart, currSysTimeStop); + return (void *) (size_t)GetDurationMilliSecs(currSysTimeStart, currSysTimeStop); } int @@ -92,7 +92,7 @@ main() assert(pthread_spin_unlock(&lock) == 0); - assert(pthread_join(t, (void **) &result) == 0); + assert(pthread_join(t, (void *) &result) == 0); assert(result > 1000); assert(pthread_spin_destroy(&lock) == 0); |