aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipx/ipx_proc.c
diff options
context:
space:
mode:
authorFrancesco Fusco <ffusco@redhat.com>2013-08-15 07:42:14 -0400
committerDavid S. Miller <davem@davemloft.net>2013-08-15 17:37:46 -0400
commitd14c5ab6bef6a46170b84c3589b27768e979f93d (patch)
tree5bcf83fa3477c67ffa6f9486c1adade354ba8a22 /net/ipx/ipx_proc.c
parent40a82917b1d3a8aecedee6b64949795b75359731 (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/ipx_proc.c')
-rw-r--r--net/ipx/ipx_proc.c2
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)
213 ntohs(ipxs->dest_addr.sock)); 213 ntohs(ipxs->dest_addr.sock));
214 } 214 }
215 215
216 seq_printf(seq, "%08X %08X %02X %03d\n", 216 seq_printf(seq, "%08X %08X %02X %03u\n",
217 sk_wmem_alloc_get(s), 217 sk_wmem_alloc_get(s),
218 sk_rmem_alloc_get(s), 218 sk_rmem_alloc_get(s),
219 s->sk_state, 219 s->sk_state,