From: Dmitry V. Levin Date: Thu, 22 Dec 2016 16:56:14 +0000 (+0000) Subject: poll: change address argument type from long to kernel_ureg_t X-Git-Tag: v4.16~213 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c3c1ae44e17be5f353005d0ec0bf9e3edaf5f37;p=strace poll: change address argument type from long to kernel_ureg_t * poll.c (decode_poll_exiting): Change tracee address argument type from long to kernel_ureg_t. --- diff --git a/poll.c b/poll.c index 6ac9bec9..147f6b1a 100644 --- a/poll.c +++ b/poll.c @@ -60,7 +60,7 @@ decode_poll_entering(struct tcb *tcp) } static int -decode_poll_exiting(struct tcb *tcp, const long pts) +decode_poll_exiting(struct tcb *const tcp, const kernel_ureg_t pts) { struct pollfd fds; const unsigned int nfds = tcp->u_arg[1];