diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-10-10 21:57:22 +0200 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-10-10 21:57:22 +0200 |
commit | 4180897317467713174e698967f321ac0ce64971 (patch) | |
tree | 607639ce5a88677d88546ad50fc3291e6a4cd8bb /pam/pam.c | |
parent | d238994f536002ce2694ba255cad87628d74ffe2 (diff) |
make use of UNUSED() consistent throughout the code
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1256 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'pam/pam.c')
-rw-r--r-- | pam/pam.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -92,7 +92,7 @@ static void ctx_clear(struct pld_ctx *ctx) } /* free the context (this is installed as handler into PAM) */ -static void ctx_free(pam_handle_t *UNUSED(pamh),void *data,int UNUSED(err)) +static void ctx_free(pam_handle_t UNUSED(*pamh),void *data,int UNUSED(err)) { struct pld_ctx *ctx=data; ctx_clear(ctx); |