svn commit: r290850 - head/contrib/netbsd-tests/lib/libc/rpc

Garrett Cooper ngie at FreeBSD.org
Sun Nov 15 05:19:42 UTC 2015


Author: ngie
Date: Sun Nov 15 05:19:41 2015
New Revision: 290850
URL: https://svnweb.freebsd.org/changeset/base/290850

Log:
  Cast xdr_void to xdrproc_t to mute -Wincompatible-pointer-types warnings from
  clang
  
  This pattern is used in other areas of lib/libc/rpc
  
  MFC after: 1 week
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c

Modified: head/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c
==============================================================================
--- head/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c	Sun Nov 15 05:13:33 2015	(r290849)
+++ head/contrib/netbsd-tests/lib/libc/rpc/t_rpc.c	Sun Nov 15 05:19:41 2015	(r290850)
@@ -73,8 +73,14 @@ onehost(const char *host, const char *tr
 
 	tv.tv_sec = 1;
 	tv.tv_usec = 0;
+#ifdef __FreeBSD__
+	if (clnt_call(clnt, RPCBPROC_NULL, (xdrproc_t)xdr_void, NULL,
+	    (xdrproc_t)xdr_void, NULL, tv)
+	    != RPC_SUCCESS)
+#else
 	if (clnt_call(clnt, RPCBPROC_NULL, xdr_void, NULL, xdr_void, NULL, tv)
 	    != RPC_SUCCESS)
+#endif
 		ERRX(EXIT_FAILURE, "clnt_call (%s)", clnt_sperror(clnt, ""));
 	clnt_control(clnt, CLGET_SVC_ADDR, (char *) &addr);
 	reply(NULL, &addr, NULL);


More information about the svn-src-head mailing list