mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02: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
1 changed files with 1 additions and 1 deletions
|
@ -1180,7 +1180,7 @@ pr_pointer (estream_printf_out_t outfnc, void *outfncarg,
|
||||||
argspec_t arg, value_t value, size_t *nbytes)
|
argspec_t arg, value_t value, size_t *nbytes)
|
||||||
{
|
{
|
||||||
int rc;
|
int rc;
|
||||||
#ifdef HAVE_LONG_LONG_INT
|
#if defined(HAVE_LONG_LONG_INT) && (SIZEOF_UNSIGNED_LONG < SIZEOF_VOID_P)
|
||||||
unsigned long long aulong;
|
unsigned long long aulong;
|
||||||
#else
|
#else
|
||||||
unsigned long aulong;
|
unsigned long aulong;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue