diff options
author | Marcus Brinkmann <[email protected]> | 2011-06-01 19:43:30 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2011-06-01 19:43:30 +0000 |
commit | 1c684df5b89bee6a67e07e0733c5a65198a3afe5 (patch) | |
tree | b4ab80ccb36ced3f029b415b39f9d1383b59207f /agent/cvt-openpgp.c | |
parent | po (diff) | |
download | gnupg-1c684df5b89bee6a67e07e0733c5a65198a3afe5.tar.gz gnupg-1c684df5b89bee6a67e07e0733c5a65198a3afe5.zip |
Fix size_t vs int issues.
Diffstat (limited to '')
-rw-r--r-- | agent/cvt-openpgp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/cvt-openpgp.c b/agent/cvt-openpgp.c index 0f3172894..ec0fd0a89 100644 --- a/agent/cvt-openpgp.c +++ b/agent/cvt-openpgp.c @@ -1062,7 +1062,7 @@ convert_to_openpgp (ctrl_t ctrl, gcry_sexp_t s_key, const char *passphrase, void *format_args_buf_ptr[1]; int format_args_buf_int[1]; void *format_args[10+2]; - size_t n; + unsigned int n; gcry_sexp_t tmpkey, tmpsexp = NULL; snprintf (countbuf, sizeof countbuf, "%lu", s2k_count); |