1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Fixed some types for portability. Noted by Stefan Bellon.

This commit is contained in:
David Shaw 2001-12-12 19:31:13 +00:00
parent 27949781ec
commit ed32beee67
2 changed files with 7 additions and 2 deletions

View file

@ -67,7 +67,7 @@ void
show_policy_url(PKT_signature *sig)
{
const byte *p;
int len;
size_t len;
p=parse_sig_subpkt(sig->hashed,SIGSUBPKT_POLICY,&len);
if(p)
@ -83,7 +83,8 @@ void
show_notation(PKT_signature *sig)
{
const byte *p;
int len,seq=0;
size_t len;
int seq=0;
/* There may be multiple notations in the same sig. */