summaryrefslogtreecommitdiff
path: root/sem_post.c
diff options
context:
space:
mode:
authorrpj <rpj>2002-06-04 07:14:57 +0000
committerrpj <rpj>2002-06-04 07:14:57 +0000
commit7e2e924362df5556ff55ee7e1b8738a05d067ec4 (patch)
tree3de0bb7796ad39d02c27d1eec4a3e14d52c64732 /sem_post.c
parentb2bca276f0fdb43e7ba4aa6baefe835d23820164 (diff)
Another attempt to get sem_getvalue working.
Diffstat (limited to 'sem_post.c')
-rw-r--r--sem_post.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sem_post.c b/sem_post.c
index afa7533..d055d93 100644
--- a/sem_post.c
+++ b/sem_post.c
@@ -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)