1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-05-27 21:41:23 +02:00

fixed type problem

This commit is contained in:
Stefan Bellon 2002-12-27 22:17:25 +00:00
parent eff3b562ae
commit 54a7e71a36
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-12-27 Stefan Bellon <sbellon@sbellon.de>
* import.c (print_import_check): Changed int to size_t.
2002-12-27 David Shaw <dshaw@jabberwocky.com>
* keyedit.c (keyedit_menu, menu_revuid): Add "revuid" feature to

View File

@ -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);