diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-08-28 09:17:24 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-08-28 09:17:24 +0000 |
commit | ecb6516436eab02c0bc704106106a3ab7468d0b8 (patch) | |
tree | b5f1e83ff419b31aa0fd0a2de16c148d63a5840d | |
parent | c920378bae1bce3a2b65d84d72c9f5d928b1a870 (diff) | |
download | glibc-ecb6516436eab02c0bc704106106a3ab7468d0b8.tar.gz glibc-ecb6516436eab02c0bc704106106a3ab7468d0b8.tar.xz glibc-ecb6516436eab02c0bc704106106a3ab7468d0b8.zip |
(pargdef): Function must take pointer to object.
-rw-r--r-- | sunrpc/rpc_hout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sunrpc/rpc_hout.c b/sunrpc/rpc_hout.c index a12810cbb4..076d63cb12 100644 --- a/sunrpc/rpc_hout.c +++ b/sunrpc/rpc_hout.c @@ -190,7 +190,7 @@ pargdef (definition * def) } f_print (fout, "};\n"); f_print (fout, "typedef struct %s %s;\n", name, name); - storexdrfuncdecl (name, 0); + storexdrfuncdecl (name, 1); f_print (fout, "\n"); } } |