diff options
author | etheisen <etheisen@cvs.openbsd.org> | 1996-11-14 06:23:51 +0000 |
---|---|---|
committer | etheisen <etheisen@cvs.openbsd.org> | 1996-11-14 06:23:51 +0000 |
commit | be4f731e5fa03db9781b6456c2339716e8bdd310 (patch) | |
tree | 7c91b57821a224e093f01eef0e6114a99c737345 | |
parent | 7bd1b886f78c8d54df83467c4cccc2e806b36bb6 (diff) |
More Alpha casts.
-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 |