* sunrpc/xdr_sizeof.c (x_inline): Cleanup pointer assignments.

	* iconv/gconv_open.c: Include string.h for memset prototype.
This commit is contained in:
Ulrich Drepper 1999-06-18 18:31:58 +00:00
parent fd19ed3d03
commit 5ce1e7f91e
2 changed files with 5 additions and 3 deletions

View File

@ -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.

View File

@ -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;
}