diff options
author | Gao Feng <fgao@ikuai8.com> | 2017-01-17 10:21:19 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-17 15:25:55 -0500 |
commit | a7ef6715c4b5905b663dddf3832dbdf77b3bf8ac (patch) | |
tree | 2e01ff3ce59aa55523e48a109d2b2bdbc8f896e9 /net/ipv4/ping.c | |
parent | 0ee28e31553a6f2ed13223e565ae5a4d7a376942 (diff) | |
download | linux-a7ef6715c4b5905b663dddf3832dbdf77b3bf8ac.tar.gz linux-a7ef6715c4b5905b663dddf3832dbdf77b3bf8ac.tar.bz2 linux-a7ef6715c4b5905b663dddf3832dbdf77b3bf8ac.zip |
net: ping: Use right format specifier to avoid type casting
The inet_num is u16, so use %hu instead of casting it to int. And
the sk_bound_dev_if is int actually, so it needn't cast to int.
Signed-off-by: Gao Feng <fgao@ikuai8.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ping.c')
-rw-r--r-- | net/ipv4/ping.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/ping.c b/net/ipv4/ping.c index 86cca610f4c2..592db6a3a0e9 100644 --- a/net/ipv4/ping.c +++ b/net/ipv4/ping.c @@ -433,9 +433,9 @@ int ping_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len) goto out; } - pr_debug("after bind(): num = %d, dif = %d\n", - (int)isk->inet_num, - (int)sk->sk_bound_dev_if); + pr_debug("after bind(): num = %hu, dif = %d\n", + isk->inet_num, + sk->sk_bound_dev_if); err = 0; if (sk->sk_family == AF_INET && isk->inet_rcv_saddr) |