From: Ulrich Drepper Date: Mon, 1 Jun 1998 14:18:00 +0000 (+0000) Subject: (struct XDR): Don't mark xdr_ops element as const. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be5cdce2f6eade7052d0e99448f89c7cd09a18ad;p=thirdparty%2Fglibc.git (struct XDR): Don't mark xdr_ops element as const. --- diff --git a/sunrpc/rpc/xdr.h b/sunrpc/rpc/xdr.h index f2226a7494a..d191414a1ba 100644 --- a/sunrpc/rpc/xdr.h +++ b/sunrpc/rpc/xdr.h @@ -105,7 +105,7 @@ typedef struct XDR XDR; struct XDR { enum xdr_op x_op; /* operation; fast additional param */ - const struct xdr_ops + struct xdr_ops { bool_t (*x_getlong) __P ((XDR * __xdrs, long *__lp)); /* get a long from underlying stream */