diff options
author | 1996-11-14 06:23:50 +0000 | |
---|---|---|
committer | 1996-11-14 06:23:50 +0000 | |
commit | fcc6c232085009513be56fb1baf2380eef881046 (patch) | |
tree | 09d853b13bcd44e69b28d6237be275fdbefb5691 /lib/libc | |
parent | Cast better for the alpha. (diff) | |
download | wireguard-openbsd-fcc6c232085009513be56fb1baf2380eef881046.tar.xz wireguard-openbsd-fcc6c232085009513be56fb1baf2380eef881046.zip |
More Alpha casts.
Diffstat (limited to 'lib/libc')
-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 |