summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src/rpc/authunix_prot.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2005-01-09 17:12:03 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2005-01-09 17:12:03 +0000
commit77b6a109132b9f68cb030fbb4ba79253f3530d03 (patch)
tree27f135c67a4e3f73db972078994b190a0e1dc0b3 /cpukit/librpc/src/rpc/authunix_prot.c
parent2005-01-09 Joel Sherrill <joel@OARcorp.com> (diff)
downloadrtems-77b6a109132b9f68cb030fbb4ba79253f3530d03.tar.bz2
2005-01-09 Joel Sherrill <joel@oarcorp.com>
* librpc/include/rpc/clnt.h, librpc/src/rpc/authunix_prot.c, librpc/src/rpc/clnt_tcp.c, librpc/src/rpc/pmap_prot2.c, librpc/src/rpc/pmap_rmt.c, librpc/src/rpc/rtems_portmapper.c, librpc/src/rpc/svc_simple.c: Fix warnings.
Diffstat (limited to 'cpukit/librpc/src/rpc/authunix_prot.c')
-rw-r--r--cpukit/librpc/src/rpc/authunix_prot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/librpc/src/rpc/authunix_prot.c b/cpukit/librpc/src/rpc/authunix_prot.c
index 4fddc6b96d..e6e91f5396 100644
--- a/cpukit/librpc/src/rpc/authunix_prot.c
+++ b/cpukit/librpc/src/rpc/authunix_prot.c
@@ -60,7 +60,7 @@ xdr_authunix_parms(xdrs, p)
&& xdr_int(xdrs, &(p->aup_uid))
&& xdr_int(xdrs, &(p->aup_gid))
&& xdr_array(xdrs, (caddr_t *)&(p->aup_gids),
- &(p->aup_len), NGRPS, sizeof(int), xdr_int) ) {
+ &(p->aup_len), NGRPS, sizeof(int), (xdrproc_t) xdr_int) ) {
return (TRUE);
}
return (FALSE);