mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
estream: Avoid printing leading zeroes by %p on 32 bit systems.
* common/estream-printf.c (pr_pointer): Synchronize definition of AULONG with its use.
This commit is contained in:
parent
f772757ea1
commit
582857b6da
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user