From: Al Viro Date: Thu, 15 Dec 2005 09:18:30 +0000 (+0000) Subject: [PATCH] Address of void __user * is void __user * *, not void * __user * X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d3a880e1ff6713b4c846e4d2526a8c7e6ad8469c;p=mv-sheeva.git [PATCH] Address of void __user * is void __user * *, not void * __user * Signed-off-by: Al Viro Signed-off-by: Linus Torvalds --- diff --git a/net/sctp/socket.c b/net/sctp/socket.c index d890dfa8818..1f7f244806b 100644 --- a/net/sctp/socket.c +++ b/net/sctp/socket.c @@ -3425,7 +3425,7 @@ static int sctp_copy_laddrs_to_user_old(struct sock *sk, __u16 port, int max_add } static int sctp_copy_laddrs_to_user(struct sock *sk, __u16 port, - void * __user *to, size_t space_left) + void __user **to, size_t space_left) { struct list_head *pos; struct sctp_sockaddr_entry *addr;