commit | ce3959604878c1c693979ec552069dc8bdb5ccde | [log] [tgz] |
---|---|---|
author | Al Viro <viro@zeniv.linux.org.uk> | Sun Oct 13 17:23:53 2013 -0400 |
committer | Al Viro <viro@zeniv.linux.org.uk> | Sat Nov 09 00:16:29 2013 -0500 |
tree | 8f7250df92eacb55747fc8bce69f0c92e8940086 | |
parent | 078d8e624c1837aa8ad65e58054a4a40d7ac46d2 [diff] [blame] |
constify copy_siginfo_to_user{,32}() Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
diff --git a/kernel/signal.c b/kernel/signal.c index ded28b9..940b30e 100644 --- a/kernel/signal.c +++ b/kernel/signal.c
@@ -2723,7 +2723,7 @@ #ifndef HAVE_ARCH_COPY_SIGINFO_TO_USER -int copy_siginfo_to_user(siginfo_t __user *to, siginfo_t *from) +int copy_siginfo_to_user(siginfo_t __user *to, const siginfo_t *from) { int err;