diff options
Diffstat (limited to 'g10/gpgv.c')
-rw-r--r-- | g10/gpgv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/gpgv.c b/g10/gpgv.c index d6e49e368..ed3752f72 100644 --- a/g10/gpgv.c +++ b/g10/gpgv.c @@ -399,9 +399,9 @@ display_online_help (const char *keyword) * We don't use secret keys, but getkey.c links to this */ int -check_secret_key (PKT_secret_key *sk, int n) +check_secret_key (PKT_public_key *pk, int n) { - (void)sk; + (void)pk; (void)n; return G10ERR_GENERAL; } |