diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-06-01 14:17:37 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-06-01 14:17:37 +0000 |
commit | 112f5896cc947bd7f6d28e4dec473eb429a12787 (patch) | |
tree | 78997b501119463a03906406b4b4cc3f0aa8a6ce /sunrpc/rpc | |
parent | fa1f94fe1d93d398877468451a9881dde7c7e74a (diff) | |
download | glibc-112f5896cc947bd7f6d28e4dec473eb429a12787.tar.gz glibc-112f5896cc947bd7f6d28e4dec473eb429a12787.tar.xz glibc-112f5896cc947bd7f6d28e4dec473eb429a12787.zip |
Update.
* sunrpc/rpc/xdr.h (struct XDR): Don't mark xdr_ops element as const.
Diffstat (limited to 'sunrpc/rpc')
-rw-r--r-- | sunrpc/rpc/xdr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/rpc/xdr.h b/sunrpc/rpc/xdr.h index c4bf67197d..bf8c2c4081 100644 --- a/sunrpc/rpc/xdr.h +++ b/sunrpc/rpc/xdr.h @@ -115,7 +115,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 */ |