From edb9b7f2ab9806afb9af31eabeb505fe454c51df Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Sat, 5 Mar 2011 16:17:01 -0500 Subject: Cleaned up a warning in rpcdispatch.c rpcdispatch.c:40:20: warning: comparison between signed and unsigned integer expressions Signed-off-by: Steve Dickson --- support/include/rpcmisc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'support/include') 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) \ -- cgit