From 690fbab2ee84927d7c19b9d75030c2b381ffa808 Mon Sep 17 00:00:00 2001 From: Michael Kerrisk Date: Mon, 23 Sep 2019 11:43:13 +0200 Subject: [PATCH] pidfd_open.2: tfix Signed-off-by: Michael Kerrisk --- man2/pidfd_open.2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man2/pidfd_open.2 b/man2/pidfd_open.2 index 51136e170..880a84faa 100644 --- a/man2/pidfd_open.2 +++ b/man2/pidfd_open.2 @@ -130,8 +130,8 @@ returns, and indicates that the file descriptor is readable. #define __NR_pidfd_open 434 #endif -static -int pidfd_open(pid_t pid, unsigned int flags) +static int +pidfd_open(pid_t pid, unsigned int flags) { return syscall(__NR_pidfd_open, pid, flags); }