diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2012-04-15 01:58:06 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-15 12:44:40 -0400 |
commit | 95c961747284a6b83a5e2d81240e214b0fa3464d (patch) | |
tree | c7be86a00db3605a48a03109fafcbe31039ca2e0 /net/rxrpc/ar-input.c | |
parent | 5e73ea1a31c3612aa6dfe44f864ca5b7b6a4cff9 (diff) |
net: cleanup unsigned to unsigned int
Use of "unsigned int" is preferred to bare "unsigned" in net tree.
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc/ar-input.c')
-rw-r--r-- | net/rxrpc/ar-input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/ar-input.c b/net/rxrpc/ar-input.c index 1a2b0633fece..529572f18d1f 100644 --- a/net/rxrpc/ar-input.c +++ b/net/rxrpc/ar-input.c | |||
@@ -76,7 +76,7 @@ int rxrpc_queue_rcv_skb(struct rxrpc_call *call, struct sk_buff *skb, | |||
76 | * --ANK */ | 76 | * --ANK */ |
77 | // ret = -ENOBUFS; | 77 | // ret = -ENOBUFS; |
78 | // if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >= | 78 | // if (atomic_read(&sk->sk_rmem_alloc) + skb->truesize >= |
79 | // (unsigned) sk->sk_rcvbuf) | 79 | // (unsigned int) sk->sk_rcvbuf) |
80 | // goto out; | 80 | // goto out; |
81 | 81 | ||
82 | ret = sk_filter(sk, skb); | 82 | ret = sk_filter(sk, skb); |