diff options
-rw-r--r-- | lib/libc/rpc/pmap_rmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/pmap_rmt.c b/lib/libc/rpc/pmap_rmt.c index 34020b9beaa..5d205e75e5e 100644 --- a/lib/libc/rpc/pmap_rmt.c +++ b/lib/libc/rpc/pmap_rmt.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: pmap_rmt.c,v 1.10 1996/09/15 09:31:37 tholo Exp $"; +static char *rcsid = "$OpenBSD: pmap_rmt.c,v 1.11 1996/11/14 06:23:50 etheisen Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -242,7 +242,7 @@ clnt_broadcast(prog, vers, proc, xargs, argsp, xresults, resultsp, eachresult) static u_int32_t disrupt; if (disrupt == 0) - disrupt = (u_int32_t)resultsp; + disrupt = (u_int32_t)(long)resultsp; /* * initialization: create a socket, a broadcast address, and |