diff options
| author | rpj <rpj> | 2011-03-04 08:03:46 +0000 | 
|---|---|---|
| committer | rpj <rpj> | 2011-03-04 08:03:46 +0000 | 
| commit | e1de8e3c33257b4e7d6b98767a67414efc31b6c7 (patch) | |
| tree | 1942d5037d1cf5077c62f2dce89cf60cd9f96399 /tests/semaphore4.c | |
| parent | e470da85f7b9426eea03d66086c2822bf29e9b05 (diff) | |
Casting 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 37613ac..c2fc948 100644 --- a/tests/semaphore4.c +++ b/tests/semaphore4.c @@ -114,7 +114,7 @@ main()  	assert(pthread_cancel(t[50]) == 0);  	  {  	    int result; -	    assert(pthread_join(t[50], (void **) &result) == 0); +	    assert(pthread_join(t[50], (void *) &result) == 0);  //	    printf("result = %d\n", result); fflush(stdout);  	  }  	assert(sem_getvalue(&s, &value) == 0); | 
