diff options
Diffstat (limited to 'g10/passphrase.c')
-rw-r--r-- | g10/passphrase.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/passphrase.c b/g10/passphrase.c index c6c7cb27d..7ca28e72a 100644 --- a/g10/passphrase.c +++ b/g10/passphrase.c @@ -285,7 +285,7 @@ agent_get_passphrase ( u32 *keyid, int mode ) char *atext; char buf[50]; int fd = -1; - int nread; + size_t nread; u32 reply; char *pw = NULL; PKT_public_key *pk = m_alloc_clear( sizeof *pk ); @@ -433,7 +433,7 @@ passphrase_clear_cache ( u32 *keyid, int algo ) size_t n; char buf[50]; int fd = -1; - int nread; + size_t nread; u32 reply; PKT_public_key *pk; byte fpr[MAX_FINGERPRINT_LEN]; |