diff options
Diffstat (limited to 'lib/librpcsvc/rwall.c')
-rw-r--r-- | lib/librpcsvc/rwall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/librpcsvc/rwall.c b/lib/librpcsvc/rwall.c index c530523..dd7b590 100644 --- a/lib/librpcsvc/rwall.c +++ b/lib/librpcsvc/rwall.c @@ -51,6 +51,6 @@ rwall(host, msg) char *msg; { return (callrpc(host, WALLPROG, WALLVERS, WALLPROC_WALL, - xdr_wrapstring, (char *) &msg, - xdr_void, (char *) NULL)); + (xdrproc_t)xdr_wrapstring, (char *) &msg, + (xdrproc_t)xdr_void, (char *) NULL)); } |