diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2007-09-11 18:00:09 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2007-10-09 17:16:37 -0400 |
commit | 89eb21c35b61b5157940e1b78c2c6d0529d11c63 (patch) | |
tree | d276c10faa1370ab09ce711f87fe299a24995b03 /net/sunrpc | |
parent | 5d34da3af923e0f950a89f160540d2506ca046ce (diff) |
SUNRPC: fix a signed v. unsigned comparison nit in rpc_bind_new_program
/home/cel/linux/net/sunrpc/clnt.c: In function ‘rpc_bind_new_program’:
/home/cel/linux/net/sunrpc/clnt.c:445: warning:
comparison between signed and unsigned
RPC version numbers are u32, not int.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/clnt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/clnt.c b/net/sunrpc/clnt.c index c796e2fd2708..c3d571abcded 100644 --- a/net/sunrpc/clnt.c +++ b/net/sunrpc/clnt.c | |||
@@ -436,7 +436,7 @@ rpc_release_client(struct rpc_clnt *clnt) | |||
436 | */ | 436 | */ |
437 | struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old, | 437 | struct rpc_clnt *rpc_bind_new_program(struct rpc_clnt *old, |
438 | struct rpc_program *program, | 438 | struct rpc_program *program, |
439 | int vers) | 439 | u32 vers) |
440 | { | 440 | { |
441 | struct rpc_clnt *clnt; | 441 | struct rpc_clnt *clnt; |
442 | struct rpc_version *version; | 442 | struct rpc_version *version; |