diff options
author | Francesco Fusco <ffusco@redhat.com> | 2013-08-15 13:42:14 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-08-15 14:37:46 -0700 |
commit | d14c5ab6bef6a46170b84c3589b27768e979f93d (patch) | |
tree | 5bcf83fa3477c67ffa6f9486c1adade354ba8a22 /net/ipx | |
parent | 40a82917b1d3a8aecedee6b64949795b75359731 (diff) |
net: proc_fs: trivial: print UIDs as unsigned int
UIDs are printed in the proc_fs as signed int, whereas
they are unsigned int.
Signed-off-by: Francesco Fusco <ffusco@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipx')
-rw-r--r-- | net/ipx/ipx_proc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipx/ipx_proc.c b/net/ipx/ipx_proc.c index 65e8833a2510..e15c16a517e7 100644 --- a/net/ipx/ipx_proc.c +++ b/net/ipx/ipx_proc.c @@ -213,7 +213,7 @@ static int ipx_seq_socket_show(struct seq_file *seq, void *v) ntohs(ipxs->dest_addr.sock)); } - seq_printf(seq, "%08X %08X %02X %03d\n", + seq_printf(seq, "%08X %08X %02X %03u\n", sk_wmem_alloc_get(s), sk_rmem_alloc_get(s), s->sk_state, |