Commit 9e0064a5 authored by David S. Miller's avatar David S. Miller

phonet: Fix build warning.

net/phonet/socket.c: In function ‘pn_res_seq_show’:
net/phonet/socket.c:726: warning: format ‘%02X’ expects type ‘unsigned int’, but argument 3 has type ‘long int’
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 274a517e
...@@ -723,7 +723,8 @@ static int pn_res_seq_show(struct seq_file *seq, void *v) ...@@ -723,7 +723,8 @@ static int pn_res_seq_show(struct seq_file *seq, void *v)
struct sock *sk = *psk; struct sock *sk = *psk;
seq_printf(seq, "%02X %5d %lu%n", seq_printf(seq, "%02X %5d %lu%n",
psk - pnres.sk, sock_i_uid(sk), sock_i_ino(sk), &len); (int) (psk - pnres.sk), sock_i_uid(sk),
sock_i_ino(sk), &len);
} }
seq_printf(seq, "%*s\n", 63 - len, ""); seq_printf(seq, "%*s\n", 63 - len, "");
return 0; return 0;
......
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