Commit 11bee7c3 authored by Randy Dunlap's avatar Randy Dunlap Committed by David S. Miller

[SCTP]: Fix printk arg type

fix printk argument type warning:
net/sctp/socket.c:2672: warning: format argument is not a pointer (arg 5)
Signed-off-by: default avatarRandy Dunlap <rddunlap@osdl.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent eca56db1
...@@ -2669,7 +2669,7 @@ static int sctp_getsockopt_sctp_status(struct sock *sk, int len, ...@@ -2669,7 +2669,7 @@ static int sctp_getsockopt_sctp_status(struct sock *sk, int len,
goto out; goto out;
} }
SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %p\n", SCTP_DEBUG_PRINTK("sctp_getsockopt_sctp_status(%d): %d %d %d\n",
len, status.sstat_state, status.sstat_rwnd, len, status.sstat_state, status.sstat_rwnd,
status.sstat_assoc_id); status.sstat_assoc_id);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment