소스 검색

- Fix compilation: semtimedop has 4 args (and not 6)

Bernhard Reutner-Fischer 18 년 전
부모
커밋
3a59892925
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      libc/misc/sysvipc/sem.c

+ 1 - 1
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