missing-syscall: fix copypasta

As noticed by @mbiebl:

5134e18eed (r43033443)
This commit is contained in:
Lennart Poettering 2020-10-08 10:27:30 +02:00
parent cd20659891
commit ba28df775d
1 changed files with 1 additions and 1 deletions

View File

@ -660,7 +660,7 @@ assert_cc(__NR_pidfd_send_signal == systemd_NR_pidfd_send_signal);
#if !HAVE_PIDFD_SEND_SIGNAL
static inline int missing_pidfd_send_signal(int fd, int sig, siginfo_t *info, unsigned flags) {
# ifdef __NR_pidfd_open
# ifdef __NR_pidfd_send_signal
return syscall(__NR_pidfd_send_signal, fd, sig, info, flags);
# else
errno = ENOSYS;