From a984eb367c032dbe2577f01238c3d1268526be70 Mon Sep 17 00:00:00 2001 From: Kacper Date: Thu, 25 Dec 2025 19:24:38 +0100 Subject: Clang-tidy fixes --- lib/libc/poll/ppoll.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/libc/poll') diff --git a/lib/libc/poll/ppoll.c b/lib/libc/poll/ppoll.c index 902ae5c5..dd62efd2 100644 --- a/lib/libc/poll/ppoll.c +++ b/lib/libc/poll/ppoll.c @@ -7,9 +7,7 @@ struct timespec; -int ppoll(struct pollfd fds[], nfds_t nfds, - const struct timespec *restrict timeout, - const sigset_t *restrict sigmask) +int ppoll(struct pollfd fds[], nfds_t nfds, const struct timespec *restrict timeout, const sigset_t *restrict sigmask) { return syscall(ppoll, fds, nfds, timeout, sigmask, 8); } -- cgit v1.2.3