diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-12-17 09:09:17 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-12-17 09:09:17 +0000 |
commit | 536d70382d1b83f3577fd15c96e31e485bdf9c60 (patch) | |
tree | e722eba8f857473a04804564fafc0f00066b541a /sunrpc | |
parent | 68185625b4f0021d83e69d90ca9255e5a1be0cf6 (diff) | |
download | glibc-536d70382d1b83f3577fd15c96e31e485bdf9c60.tar.gz glibc-536d70382d1b83f3577fd15c96e31e485bdf9c60.tar.xz glibc-536d70382d1b83f3577fd15c96e31e485bdf9c60.zip |
Update.
Thu Dec 17 08:53:40 1998 H.J. Lu <hjl@gnu.org> * sunrpc/rpc/xdr.h (XDR_DESTROY): Add ';'. (xdr_destroy): Likewise.
Diffstat (limited to 'sunrpc')
-rw-r--r-- | sunrpc/rpc/xdr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sunrpc/rpc/xdr.h b/sunrpc/rpc/xdr.h index a4c2747ad5..44e30dfabe 100644 --- a/sunrpc/rpc/xdr.h +++ b/sunrpc/rpc/xdr.h @@ -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) /* |