diff options
author | David Shaw <[email protected]> | 2002-07-01 16:47:22 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2002-07-01 16:47:22 +0000 |
commit | db765c90d835d62ea13c2e6b7ecd1b839f658126 (patch) | |
tree | d5e7d32411907ee942cc7271e3b292670252b545 /g10/parse-packet.c | |
parent | * packet.h, build-packet.c (build_attribute_subpkt), exec.c (expand_args), (diff) | |
download | gnupg-db765c90d835d62ea13c2e6b7ecd1b839f658126.tar.gz gnupg-db765c90d835d62ea13c2e6b7ecd1b839f658126.zip |
* options.skel: Fix a few typos, clarify "group", and remove sample photo
viewers for Win32 since they are the defaults now.
* parse-packet.c (make_attribute_uidname), keylist.c (dump_attribs): Fix
two typecast warnings.
Diffstat (limited to 'g10/parse-packet.c')
-rw-r--r-- | g10/parse-packet.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/parse-packet.c b/g10/parse-packet.c index d57659b6b..f922a6551 100644 --- a/g10/parse-packet.c +++ b/g10/parse-packet.c @@ -1844,7 +1844,8 @@ make_attribute_uidname(PKT_user_id *uid) sprintf(uid->name,"[invalid image]"); } else - sprintf(uid->name,"[unknown attribute of size %lu]",uid->attribs->len); + sprintf(uid->name,"[unknown attribute of size %lu]", + (ulong)uid->attribs->len); } uid->len = strlen(uid->name); |