From: Dmitry V. Levin Date: Thu, 22 Dec 2016 20:44:44 +0000 (+0000) Subject: printsiginfo: change address argument type from unsigned long to kernel_ureg_t X-Git-Tag: v4.16~267 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a011ab10afc434aae0bae4f65489524de3fec6a7;p=strace printsiginfo: change address argument type from unsigned long to kernel_ureg_t * printsiginfo.c (print_siginfo_array): Change address argument type from unsigned long to kernel_ureg_t. --- diff --git a/printsiginfo.c b/printsiginfo.c index e92738ed..1b32e797 100644 --- a/printsiginfo.c +++ b/printsiginfo.c @@ -254,8 +254,8 @@ print_siginfo_t(struct tcb *tcp, void *elem_buf, size_t elem_size, void *data) return true; } -MPERS_PRINTER_DECL(void, print_siginfo_array, - struct tcb *tcp, unsigned long addr, unsigned long len) +MPERS_PRINTER_DECL(void, print_siginfo_array, struct tcb *const tcp, + const kernel_ureg_t addr, const unsigned long len) { siginfo_t si;