diff options
author | Werner Koch <[email protected]> | 2006-11-21 11:00:14 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-11-21 11:00:14 +0000 |
commit | e50c5f39cc2ea399eead30ef451d7d5e24c13fe6 (patch) | |
tree | 37f73eb8abf85a3a6505a5a7c30b1e4c8e8d85d5 /tools/gpgconf-comp.c | |
parent | Made some PIN pads work. (diff) | |
download | gnupg-e50c5f39cc2ea399eead30ef451d7d5e24c13fe6.tar.gz gnupg-e50c5f39cc2ea399eead30ef451d7d5e24c13fe6.zip |
No more warnings for AMD64 (at least when cross-compiling). Thus tehre is a
good chance that gpg2 will now work.
Other cleanups.
Updated gettext.
Diffstat (limited to 'tools/gpgconf-comp.c')
-rw-r--r-- | tools/gpgconf-comp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/gpgconf-comp.c b/tools/gpgconf-comp.c index d88c96751..e1d96d2c8 100644 --- a/tools/gpgconf-comp.c +++ b/tools/gpgconf-comp.c @@ -1175,7 +1175,7 @@ list_one_option (const gc_option_t *option, FILE *out) && option->value) /* The special format "1,1,1,1,...,1" is converted to a number here. */ - fprintf (out, ":%u", (strlen (option->value) + 1) / 2); + fprintf (out, ":%u", (unsigned int)((strlen (option->value) + 1) / 2)); else fprintf (out, ":%s", option->value ? option->value : ""); |