The branch main has been updated by dchagin: URL: https://cgit.FreeBSD.org/src/commit/?id=94f5f150ef59d8e985bd529b0a6dea52ae8a7def
commit 94f5f150ef59d8e985bd529b0a6dea52ae8a7def Author: Dmitry Chagin <[email protected]> AuthorDate: 2022-05-08 10:37:48 +0000 Commit: Dmitry Chagin <[email protected]> CommitDate: 2022-05-08 10:37:48 +0000 linux(4): Fix ppoll_time64 syscall definition. Fixed my typo in ed61e0ce1d. Here tsp is a pointer to the 64-bit timespec. MFC after: 2 weeks --- sys/amd64/linux32/syscalls.master | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/linux32/syscalls.master b/sys/amd64/linux32/syscalls.master index 317f590de557..01e806433672 100644 --- a/sys/amd64/linux32/syscalls.master +++ b/sys/amd64/linux32/syscalls.master @@ -2424,7 +2424,7 @@ int linux_ppoll_time64( struct pollfd *fds, uint32_t nfds, - struct l_timespec *tsp, + struct l_timespec64 *tsp, l_sigset_t *sset, l_size_t ssize );
