diff options
| author | 2013-10-13 17:23:53 -0400 | |
|---|---|---|
| committer | 2013-11-09 00:16:29 -0500 | |
| commit | ce3959604878c1c693979ec552069dc8bdb5ccde (patch) | |
| tree | 8f7250df92eacb55747fc8bce69f0c92e8940086 /kernel | |
| parent | ... and kill anon_inode_getfile_private() (diff) | |
constify copy_siginfo_to_user{,32}()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/signal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/signal.c b/kernel/signal.c index ded28b91fa53..940b30ee9a30 100644 --- a/kernel/signal.c +++ b/kernel/signal.c @@ -2723,7 +2723,7 @@ COMPAT_SYSCALL_DEFINE2(rt_sigpending, compat_sigset_t __user *, uset, #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; |
