1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00
Thu Dec 17 08:53:40 1998  H.J. Lu  <hjl@gnu.org>

	* sunrpc/rpc/xdr.h (XDR_DESTROY): Add ';'.
	(xdr_destroy): Likewise.
This commit is contained in:
Ulrich Drepper
1998-12-17 09:09:17 +00:00
parent 68185625b4
commit 536d70382d
2 changed files with 7 additions and 2 deletions

View File

@ -212,12 +212,12 @@ typedef bool_t (*xdrproc_t) __PMT ((XDR *, void *,...));
#define XDR_DESTROY(xdrs) \
do { \
if ((xdrs)->x_ops->x_destroy) \
(*(xdrs)->x_ops->x_destroy)(xdrs) \
(*(xdrs)->x_ops->x_destroy)(xdrs); \
} while (0)
#define xdr_destroy(xdrs) \
do { \
if ((xdrs)->x_ops->x_destroy) \
(*(xdrs)->x_ops->x_destroy)(xdrs) \
(*(xdrs)->x_ops->x_destroy)(xdrs); \
} while (0)
/*