diff options
author | Werner Koch <[email protected]> | 2012-01-31 14:29:30 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2012-01-31 14:29:30 +0000 |
commit | 582857b6da3950a15d5e47698849f2d3be8acc2e (patch) | |
tree | 37298eacc08ebbce348bd511841566b7bf14d75a | |
parent | gpg: Add a DECRYPTION_INFO status. (diff) | |
download | gnupg-582857b6da3950a15d5e47698849f2d3be8acc2e.tar.gz gnupg-582857b6da3950a15d5e47698849f2d3be8acc2e.zip |
estream: Avoid printing leading zeroes by %p on 32 bit systems.
* common/estream-printf.c (pr_pointer): Synchronize definition of
AULONG with its use.
-rw-r--r-- | common/estream-printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/estream-printf.c b/common/estream-printf.c index 54ecb2377..a5f3a69c9 100644 --- a/common/estream-printf.c +++ b/common/estream-printf.c @@ -1180,7 +1180,7 @@ pr_pointer (estream_printf_out_t outfnc, void *outfncarg, argspec_t arg, value_t value, size_t *nbytes) { int rc; -#ifdef HAVE_LONG_LONG_INT +#if defined(HAVE_LONG_LONG_INT) && (SIZEOF_UNSIGNED_LONG < SIZEOF_VOID_P) unsigned long long aulong; #else unsigned long aulong; |