From a011ab10afc434aae0bae4f65489524de3fec6a7 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Thu, 22 Dec 2016 20:44:44 +0000 Subject: [PATCH] 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. --- printsiginfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; -- 2.50.1