diff options
author | Werner Koch <[email protected]> | 2006-11-20 16:49:41 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-11-20 16:49:41 +0000 |
commit | 5885142c83823b153689acd272103403127a3cd3 (patch) | |
tree | 514e8325f9201775785b3249b176e9ac051776ff /kbx/kbxutil.c | |
parent | No need for thsi script. Use ./autogen.sh --build-w32 instead. (diff) | |
download | gnupg-5885142c83823b153689acd272103403127a3cd3.tar.gz gnupg-5885142c83823b153689acd272103403127a3cd3.zip |
Made some PIN pads work.
Some cleanups for 64 bit CPUs.
Diffstat (limited to '')
-rw-r--r-- | kbx/kbxutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kbx/kbxutil.c b/kbx/kbxutil.c index 19d356007..73d10e348 100644 --- a/kbx/kbxutil.c +++ b/kbx/kbxutil.c @@ -367,7 +367,7 @@ dump_openpgp_key (keybox_openpgp_info_t info, const unsigned char *image) u = &info->uids; do { - printf ("uid\t\t%.*s\n", u->len, image + u->off); + printf ("uid\t\t%.*s\n", (int)u->len, image + u->off); u = u->next; } while (u); |