diff options
Diffstat (limited to 'g10/keylist.c')
-rw-r--r-- | g10/keylist.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/g10/keylist.c b/g10/keylist.c index 9994aa6e8..fa705bfa3 100644 --- a/g10/keylist.c +++ b/g10/keylist.c @@ -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. */ |