summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/include/rpc/clnt.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-05-25 17:17:14 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-05-25 17:17:14 +0000
commit9dcab59b1a13a33aec19f656c7783f2536b24128 (patch)
treeb6f3bcd068af7cc3c1c6b594a0f4554687eb9fa6 /cpukit/librpc/include/rpc/clnt.h
parentRegenerate. (diff)
downloadrtems-9dcab59b1a13a33aec19f656c7783f2536b24128.tar.bz2
Use void* instead of caddr_t. Cosmetics from FreeBSD.
Diffstat (limited to 'cpukit/librpc/include/rpc/clnt.h')
-rw-r--r--cpukit/librpc/include/rpc/clnt.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/librpc/include/rpc/clnt.h b/cpukit/librpc/include/rpc/clnt.h
index 3ece13c285..85e31d931e 100644
--- a/cpukit/librpc/include/rpc/clnt.h
+++ b/cpukit/librpc/include/rpc/clnt.h
@@ -110,14 +110,14 @@ typedef struct __rpc_client {
struct rpc_err *);
/* frees results */
bool_t (*cl_freeres)(struct __rpc_client *,
- xdrproc_t, caddr_t);
+ xdrproc_t, void *);
/* destroy this structure */
void (*cl_destroy)(struct __rpc_client *);
/* the ioctl() of rpc */
bool_t (*cl_control)(struct __rpc_client *, u_int,
void *);
} *cl_ops;
- caddr_t cl_private; /* private stuff */
+ void *cl_private; /* private stuff */
} CLIENT;
#define RPCSMALLMSGSIZE 400 /* a more reasonable packet size */