diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-18 18:31:58 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-18 18:31:58 +0000 |
commit | 5ce1e7f91e4c94ec5348cb499d18e0951edf8f48 (patch) | |
tree | a5c5c4d26b697370b0cd1f64d58fd5680a5ae8aa | |
parent | fd19ed3d03411b90b368c69fa96c7753409c7b0a (diff) | |
download | glibc-5ce1e7f91e4c94ec5348cb499d18e0951edf8f48.tar glibc-5ce1e7f91e4c94ec5348cb499d18e0951edf8f48.tar.gz glibc-5ce1e7f91e4c94ec5348cb499d18e0951edf8f48.tar.bz2 glibc-5ce1e7f91e4c94ec5348cb499d18e0951edf8f48.zip |
Update.
* sunrpc/xdr_sizeof.c (x_inline): Cleanup pointer assignments.
* iconv/gconv_open.c: Include string.h for memset prototype.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sunrpc/xdr_sizeof.c | 4 |
2 files changed, 5 insertions, 3 deletions
@@ -1,6 +1,8 @@ 1999-06-18 Ulrich Drepper <drepper@cygnus.com> - * iconv/gconv_open.c: Inlcude string.h for memset prototype. + * sunrpc/xdr_sizeof.c (x_inline): Cleanup pointer assignments. + + * iconv/gconv_open.c: Include string.h for memset prototype. * libio/libioP.h (FILEBUF_LITERAL): Add missing parameter to macro definitions. diff --git a/sunrpc/xdr_sizeof.c b/sunrpc/xdr_sizeof.c index faaea34fa3..cbf8bdfd1e 100644 --- a/sunrpc/xdr_sizeof.c +++ b/sunrpc/xdr_sizeof.c @@ -77,7 +77,7 @@ x_inline (XDR *xdrs, int len) return NULL; if (xdrs->x_op != XDR_ENCODE) return NULL; - if (len < (int) xdrs->x_base) + if (len < (int) (long int) xdrs->x_base) { /* x_private was already allocated */ xdrs->x_handy += len; @@ -93,7 +93,7 @@ x_inline (XDR *xdrs, int len) xdrs->x_base = 0; return NULL; } - xdrs->x_base = (caddr_t) len; + xdrs->x_base = (void *) len; xdrs->x_handy += len; return (int32_t *) xdrs->x_private; } |