Skip to content

Commit

Permalink
(sem_timedwait): Fix a typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Jelinek committed Jun 10, 2003
1 parent 1dc869d commit 1dee0a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nptl/sysdeps/unix/sysv/linux/s390/sem_timedwait.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ sem_timedwait (sem, abstime)
return -1;
}
}
while (err == 0 || err == -EWOULDBLOCK)
while (err == 0 || err == -EWOULDBLOCK);

__set_errno (-err);
__set_errno (-err);
return -1;
}

0 comments on commit 1dee0a7

Please sign in to comment.