diff options
author | rodrigc <rodrigc@FreeBSD.org> | 2015-09-01 02:42:05 +0000 |
---|---|---|
committer | rodrigc <rodrigc@FreeBSD.org> | 2015-09-01 02:42:05 +0000 |
commit | 5acb571ae5202945a6a4a1283411ec6e0919a9ea (patch) | |
tree | 54fcf972ad006527a4e5600e46bba7c8145750cf /lib/libc/rpc | |
parent | 17c90228482320aa70427c19b6bf5942070cd36c (diff) | |
download | FreeBSD-src-5acb571ae5202945a6a4a1283411ec6e0919a9ea.zip FreeBSD-src-5acb571ae5202945a6a4a1283411ec6e0919a9ea.tar.gz |
Mark unused parameters to reduce gcc 4.9 warnings.
Diffstat (limited to 'lib/libc/rpc')
-rw-r--r-- | lib/libc/rpc/auth_des.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/auth_des.c b/lib/libc/rpc/auth_des.c index 1bc2661..91deaae 100644 --- a/lib/libc/rpc/auth_des.c +++ b/lib/libc/rpc/auth_des.c @@ -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 opaque_auth *rverf) */ /*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); |