aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Chagin <dchagin@FreeBSD.org>2022-05-08 10:37:48 +0000
committerDmitry Chagin <dchagin@FreeBSD.org>2022-05-08 10:37:48 +0000
commit94f5f150ef59d8e985bd529b0a6dea52ae8a7def (patch)
tree28684f6fb8fa31bdeb861a26c4801a1e4ec4412d
parent13aacd0c0cb6c1e6da41c0d10bf41c1ed51a28d2 (diff)
downloadsrc-94f5f150ef59d8e985bd529b0a6dea52ae8a7def.tar.gz
src-94f5f150ef59d8e985bd529b0a6dea52ae8a7def.zip
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
-rw-r--r--sys/amd64/linux32/syscalls.master2
1 files changed, 1 insertions, 1 deletions
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
);