diff options
author | Stefan Bellon <sbellon@sbellon.de> | 2002-12-27 23:17:25 +0100 |
---|---|---|
committer | Stefan Bellon <sbellon@sbellon.de> | 2002-12-27 23:17:25 +0100 |
commit | 54a7e71a36734062ac0ed5765f0e79cf65e16c45 (patch) | |
tree | 3eb7aff03cfdce53a58155d68947d971e9e2de0f /g10/import.c | |
parent | * keyedit.c (keyedit_menu, menu_revuid): Add "revuid" feature to revoke a (diff) | |
download | gnupg2-54a7e71a36734062ac0ed5765f0e79cf65e16c45.tar.xz gnupg2-54a7e71a36734062ac0ed5765f0e79cf65e16c45.zip |
fixed type problem
Diffstat (limited to 'g10/import.c')
-rw-r--r-- | g10/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/import.c b/g10/import.c index 46e4b2530..8196d6c84 100644 --- a/g10/import.c +++ b/g10/import.c @@ -562,7 +562,7 @@ print_import_check (PKT_public_key * pk, PKT_user_id * id) char * buf, * p; byte fpr[24]; u32 keyid[2]; - int i, pos = 0, n; + size_t i, pos = 0, n; buf = m_alloc (17+41+id->len+32); keyid_from_pk (pk, keyid); |