From 95b54cdd0d9c584ff03a0fad2ea60e922ba427fe Mon Sep 17 00:00:00 2001 From: deraadt <> Date: Sat, 20 Jul 1996 04:54:08 +0000 Subject: [PATCH] (*cl_control)() takes a void * for last param --- src/include/rpc/clnt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/rpc/clnt.h b/src/include/rpc/clnt.h index b2fc7e27..7767d4ca 100644 --- a/src/include/rpc/clnt.h +++ b/src/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;