Update.
authorUlrich Drepper <drepper@redhat.com>
Thu, 17 Dec 1998 09:09:17 +0000 (09:09 +0000)
committerUlrich Drepper <drepper@redhat.com>
Thu, 17 Dec 1998 09:09:17 +0000 (09:09 +0000)
Thu Dec 17 08:53:40 1998  H.J. Lu  <hjl@gnu.org>

* sunrpc/rpc/xdr.h (XDR_DESTROY): Add ';'.
(xdr_destroy): Likewise.

ChangeLog
sunrpc/rpc/xdr.h

index b665f35..fc96c39 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu Dec 17 08:53:40 1998  H.J. Lu  <hjl@gnu.org>
+
+       * sunrpc/rpc/xdr.h (XDR_DESTROY): Add ';'.
+       (xdr_destroy): Likewise.
+
 1998-12-17  Ulrich Drepper  <drepper@cygnus.com>
 
        * login/login.c: Determine pts/3 and terminal name if path is
index a4c2747..44e30df 100644 (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)
 
 /*