summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src/rpc/rtems_portmapper.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-14 19:09:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-14 19:09:06 +0000
commit90d2585a07eac08511ea92bf333930971c8e6374 (patch)
tree4cc2a1ff828ae6dcc6d07d4426db969cf30edbf1 /cpukit/librpc/src/rpc/rtems_portmapper.c
parent*** empty log message *** (diff)
downloadrtems-90d2585a07eac08511ea92bf333930971c8e6374.tar.bz2
2006-09-14 Joel Sherrill <joel@OARcorp.com>
* libnetworking/net/route.c, librpc/src/rpc/auth_none.c, librpc/src/rpc/auth_unix.c, librpc/src/rpc/authunix_prot.c, librpc/src/rpc/rpc_callmsg.c, librpc/src/rpc/rpc_prot.c, librpc/src/rpc/rtems_portmapper.c: Removed warnings.
Diffstat (limited to '')
-rw-r--r--cpukit/librpc/src/rpc/rtems_portmapper.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/cpukit/librpc/src/rpc/rtems_portmapper.c b/cpukit/librpc/src/rpc/rtems_portmapper.c
index 41e0e3a724..b24b36ba00 100644
--- a/cpukit/librpc/src/rpc/rtems_portmapper.c
+++ b/cpukit/librpc/src/rpc/rtems_portmapper.c
@@ -316,7 +316,8 @@ xdr_encap_parms(
struct encap_parms *epp )
{
- return (xdr_bytes(xdrs, &(epp->args), (u_int*)&(epp->arglen), ARGSIZE));
+ u_int temp_epp_arglen = epp->arglen;
+ return (xdr_bytes(xdrs, &(epp->args), &temp_epp_arglen, ARGSIZE));
}
struct rmtcallargs {