Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Nov 2015 05:19:41 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r290850 - head/contrib/netbsd-tests/lib/libc/rpc
Message-ID:  <201511150519.tAF5JfXi007930@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511150519.tAF5JfXi007930>