summaryrefslogtreecommitdiff
path: root/include/rpc/clnt.h
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-20 04:54:09 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-07-20 04:54:09 +0000
commit9e452f17155724d1780c6cb50d5874f4cf95abb2 (patch)
tree9cc3a38963a4af26c0f03d8064e55c733fcb5402 /include/rpc/clnt.h
parentfb5a7bd7f2770df4fd98c6092e4be7dd70380472 (diff)
(*cl_control)() takes a void * for last param
Diffstat (limited to 'include/rpc/clnt.h')
-rw-r--r--include/rpc/clnt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rpc/clnt.h b/include/rpc/clnt.h
index b2fc7e27b98..7767d4caa7f 100644
--- a/include/rpc/clnt.h
+++ b/include/rpc/clnt.h
@@ -134,7 +134,7 @@ typedef struct __rpc_client {
void (*cl_destroy) __P((struct __rpc_client *));
/* the ioctl() of rpc */
bool_t (*cl_control) __P((struct __rpc_client *, u_int,
- char *));
+ void *));
} *cl_ops;
caddr_t cl_private; /* private stuff */
} CLIENT;