git: 9d88adb476af - stable/13 - linux(4): Fix ppoll_time64 syscall definition.

From: Dmitry Chagin <dchagin_at_FreeBSD.org>
Date: Fri, 17 Jun 2022 19:40:00 UTC
The branch stable/13 has been updated by dchagin:

URL: https://cgit.FreeBSD.org/src/commit/?id=9d88adb476af638f44b8419a49192e427eb1df53

commit 9d88adb476af638f44b8419a49192e427eb1df53
Author:     Dmitry Chagin <dchagin@FreeBSD.org>
AuthorDate: 2022-05-08 10:37:48 +0000
Commit:     Dmitry Chagin <dchagin@FreeBSD.org>
CommitDate: 2022-06-17 19:34:54 +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
    
    (cherry picked from commit 94f5f150ef59d8e985bd529b0a6dea52ae8a7def)
---
 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
 		);