diff options
| author | rpj <rpj> | 2011-03-06 15:01:05 +0000 | 
|---|---|---|
| committer | rpj <rpj> | 2011-03-06 15:01:05 +0000 | 
| commit | a39dab139b7c301ffd5a5592c292123c54e686cd (patch) | |
| tree | 73aeb7a868f7c075de9ec43344d17d21f99763f9 /tests/semaphore4.c | |
| parent | 1183e5acfa10c7bda1dc39034d6e2fa6dec6016f (diff) | |
More 64 bit cast fixups
Diffstat (limited to 'tests/semaphore4.c')
| -rw-r--r-- | tests/semaphore4.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/tests/semaphore4.c b/tests/semaphore4.c index 0ccd45a..3a28c7b 100644 --- a/tests/semaphore4.c +++ b/tests/semaphore4.c @@ -111,7 +111,7 @@ main()  	assert(pthread_cancel(t[50]) == 0);  	  {  	    void* result; -	    assert(pthread_join(t[50], (void *) &result) == 0); +	    assert(pthread_join(t[50], &result) == 0);  	  }  	assert(sem_getvalue(&s, &value) == 0);  	assert(-value == (MAX_COUNT - 1)); | 
