diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-01-09 17:13:57 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-01-09 17:13:57 +0000 |
commit | 3a59892925d185dbfd2d3c3b15e1fcfac0848625 (patch) | |
tree | 590d33f1dcd52bfeeebb7f6a893ef7523c72704e /libc/misc/sysvipc/sem.c | |
parent | 095d670a7515f4ae1442fcb13aa8135283317123 (diff) |
- Fix compilation: semtimedop has 4 args (and not 6)
Diffstat (limited to 'libc/misc/sysvipc/sem.c')
-rw-r--r-- | libc/misc/sysvipc/sem.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/misc/sysvipc/sem.c b/libc/misc/sysvipc/sem.c index ce259a10e..51706c58d 100644 --- a/libc/misc/sysvipc/sem.c +++ b/libc/misc/sysvipc/sem.c @@ -92,7 +92,7 @@ int semop (int semid, struct sembuf *sops, size_t nsops) #ifdef L_semtimedop #ifdef __NR_semtimedop -_syscall6(int, semtimedop, int, semid, struct sembuf *, sops, size_t, nsops, const struct timespec *, timeout); +_syscall4(int, semtimedop, int, semid, struct sembuf *, sops, size_t, nsops, const struct timespec *, timeout); #else |