svn commit: r287342 - head/lib/libc/rpc

Craig Rodrigues rodrigc at FreeBSD.org
Tue Sep 1 02:42:06 UTC 2015


Author: rodrigc
Date: Tue Sep  1 02:42:05 2015
New Revision: 287342
URL: https://svnweb.freebsd.org/changeset/base/287342

Log:
  Mark unused parameters to reduce gcc 4.9 warnings.

Modified:
  head/lib/libc/rpc/auth_des.c

Modified: head/lib/libc/rpc/auth_des.c
==============================================================================
--- head/lib/libc/rpc/auth_des.c	Tue Sep  1 02:39:07 2015	(r287341)
+++ head/lib/libc/rpc/auth_des.c	Tue Sep  1 02:42:05 2015	(r287342)
@@ -259,7 +259,7 @@ failed:
  */	
 /*ARGSUSED*/
 static void
-authdes_nextverf(AUTH *auth)
+authdes_nextverf(AUTH *auth __unused)
 {
 	/* what the heck am I supposed to do??? */
 }
@@ -420,7 +420,7 @@ authdes_validate(AUTH *auth, struct opaq
  */
 /*ARGSUSED*/
 static bool_t
-authdes_refresh(AUTH *auth, void *dummy)
+authdes_refresh(AUTH *auth, void *dummy __unused)
 {
 /* LINTED pointer alignment */
 	struct ad_private *ad = AUTH_PRIVATE(auth);


More information about the svn-src-head mailing list