aboutsummaryrefslogtreecommitdiffstats
path: root/kbx/kbxutil.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--kbx/kbxutil.c2
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);