diff options
author | David Howells <dhowells@redhat.com> | 2016-03-10 00:22:56 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-03-13 20:14:57 +0100 |
commit | dad8aff754247781514c9d38f6db89557685136d (patch) | |
tree | 59b4c7dec17b8b0714a9dd55910debf3f29ccc51 /net/rxrpc/ar-output.c | |
parent | Merge tag 'wireless-drivers-next-for-davem-2016-03-09' of git://git.kernel.or... (diff) | |
download | linux-dad8aff754247781514c9d38f6db89557685136d.tar.xz linux-dad8aff754247781514c9d38f6db89557685136d.zip |
rxrpc: Replace all unsigned with unsigned int
Replace all "unsigned" types with "unsigned int" types.
Reported-by: David Miller <davem@davemloft.net>
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc/ar-output.c')
-rw-r--r-- | net/rxrpc/ar-output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/ar-output.c b/net/rxrpc/ar-output.c index 14c8df6b7f41..d36fb6e1a29c 100644 --- a/net/rxrpc/ar-output.c +++ b/net/rxrpc/ar-output.c @@ -21,7 +21,7 @@ /* * Time till packet resend (in jiffies). */ -unsigned rxrpc_resend_timeout = 4 * HZ; +unsigned int rxrpc_resend_timeout = 4 * HZ; static int rxrpc_send_data(struct rxrpc_sock *rx, struct rxrpc_call *call, |