diff options
author | Steve Dickson <steved@redhat.com> | 2011-03-05 16:17:01 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2011-03-05 16:23:18 -0500 |
commit | edb9b7f2ab9806afb9af31eabeb505fe454c51df (patch) | |
tree | 1f361810548623ad44b0a78bed8a9d71a6b2e0fb /support/include | |
parent | 930323817b61877d61fb8ef57229013daa2e6091 (diff) | |
download | nfs-utils-edb9b7f2ab9806afb9af31eabeb505fe454c51df.tar.gz nfs-utils-edb9b7f2ab9806afb9af31eabeb505fe454c51df.tar.xz nfs-utils-edb9b7f2ab9806afb9af31eabeb505fe454c51df.zip |
Cleaned up a warning in rpcdispatch.c
rpcdispatch.c:40:20: warning: comparison between signed and unsigned
integer expressions
Signed-off-by: Steve Dickson <steved@redhat.com>
Diffstat (limited to 'support/include')
-rw-r--r-- | support/include/rpcmisc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/include/rpcmisc.h b/support/include/rpcmisc.h index c5847fa..0b06457 100644 --- a/support/include/rpcmisc.h +++ b/support/include/rpcmisc.h @@ -31,7 +31,7 @@ struct rpc_dentry { struct rpc_dtable { struct rpc_dentry *entries; - int nproc; + rpcproc_t nproc; }; #define dtable_ent(func, vers, arg_type, res_type) \ |