mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
* passphrase.c (agent_get_passphrase): Define NREAD locally as
size_t or int. * keylist.c (list_keyblock_print): Make field width an int. * keyedit.c (show_key_with_all_names): Ditto.
This commit is contained in:
parent
4ec9365c6d
commit
74330a49ec
4 changed files with 13 additions and 3 deletions
|
@ -787,7 +787,7 @@ list_keyblock_print ( KBNODE keyblock, int secret, int fpr, void *opaque )
|
|||
printf("uid%*s%s ",indent,"",validity);
|
||||
}
|
||||
else
|
||||
printf("uid%*s",keystrlen()+10,"");
|
||||
printf("uid%*s", (int)keystrlen()+10,"");
|
||||
|
||||
print_utf8_string( stdout, uid->name, uid->len );
|
||||
putchar('\n');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue