From c1e04f011637265526738f539b0cff18126d9567 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Almeida?= Date: Mon, 16 Mar 2020 17:47:57 -0300 Subject: [PATCH] futex.2: wfix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The sixth argument of futex is uaddr2, instead of uaddr. Signed-off-by: André Almeida Signed-off-by: Michael Kerrisk --- man2/futex.2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/man2/futex.2 b/man2/futex.2 index 54dc8e590..141ebaa45 100644 --- a/man2/futex.2 +++ b/man2/futex.2 @@ -1775,7 +1775,7 @@ futex(int *uaddr, int futex_op, int val, const struct timespec *timeout, int *uaddr2, int val3) { return syscall(SYS_futex, uaddr, futex_op, val, - timeout, uaddr, val3); + timeout, uaddr2, val3); } /* Acquire the futex pointed to by \(aqfutexp\(aq: wait for its value to