diff options
author | rpj <rpj> | 2002-06-04 07:14:57 +0000 |
---|---|---|
committer | rpj <rpj> | 2002-06-04 07:14:57 +0000 |
commit | 7e2e924362df5556ff55ee7e1b8738a05d067ec4 (patch) | |
tree | 3de0bb7796ad39d02c27d1eec4a3e14d52c64732 /sem_post.c | |
parent | b2bca276f0fdb43e7ba4aa6baefe835d23820164 (diff) |
Another attempt to get sem_getvalue working.
Diffstat (limited to 'sem_post.c')
-rw-r--r-- | sem_post.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -76,7 +76,7 @@ sem_post (sem_t * sem) if (sem == NULL || *sem == NULL) { - result = EINVAL; + result = EINVAL; } #ifdef NEED_SEM @@ -90,7 +90,7 @@ sem_post (sem_t * sem) #endif /* NEED_SEM */ { - result = EINVAL; + result = EINVAL; } if (result != 0) |