diff options
author | 1996-07-20 04:54:08 +0000 | |
---|---|---|
committer | 1996-07-20 04:54:08 +0000 | |
commit | 5948f55a17f95e40d371c4732352ab2aab88535a (patch) | |
tree | 16e15ae89533d7385f71987a88371dd4fb3f2977 | |
parent | nice # comment here (diff) | |
download | wireguard-openbsd-5948f55a17f95e40d371c4732352ab2aab88535a.tar.xz wireguard-openbsd-5948f55a17f95e40d371c4732352ab2aab88535a.zip |
(*cl_control)() takes a void * for last param
-rw-r--r-- | include/rpc/clnt.h | 2 |
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; |