diff options
| author | Peter Wemm <peter@FreeBSD.org> | 2003-10-26 04:57:32 +0000 |
|---|---|---|
| committer | Peter Wemm <peter@FreeBSD.org> | 2003-10-26 04:57:32 +0000 |
| commit | ed838bb1cd248c9ee0a737e97fa49d0f9d5e46bb (patch) | |
| tree | 69af30cd33763419da7760ec77d7e4e4cc3f9f63 /usr.bin/rwall | |
| parent | 35f47c50028b10c693cdea480dcd1d89b4e1c82b (diff) | |
Notes
Diffstat (limited to 'usr.bin/rwall')
| -rw-r--r-- | usr.bin/rwall/rwall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rwall/rwall.c b/usr.bin/rwall/rwall.c index 861c8cffaa62..d5a1c1d86d94 100644 --- a/usr.bin/rwall/rwall.c +++ b/usr.bin/rwall/rwall.c @@ -102,8 +102,8 @@ main(int argc, char *argv[]) tv.tv_sec = 15; /* XXX ?? */ tv.tv_usec = 0; - if (clnt_call(cl, WALLPROC_WALL, xdr_wrapstring, &mbuf, xdr_void, - &res, tv) != RPC_SUCCESS) { + if (clnt_call(cl, WALLPROC_WALL, (xdrproc_t)xdr_wrapstring, &mbuf, + (xdrproc_t)xdr_void, &res, tv) != RPC_SUCCESS) { /* * An error occurred while calling the server. * Print error message and die. |
