[git] GnuPG - branch, master, updated. gnupg-2.1.0beta3-15-gb42bc48

by Werner Koch cvs at cvs.gnupg.org
Wed Jan 11 18:04:43 CET 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".

The branch, master has been updated
       via  b42bc48dfb4b6d4f745eb02d8de4f4dcffdacf48 (commit)
      from  860861279bc17dd80eecc9631c4ae5d161a335fd (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b42bc48dfb4b6d4f745eb02d8de4f4dcffdacf48
Author: Werner Koch <wk at gnupg.org>
Date:   Wed Jan 11 17:06:17 2012 +0100

    estream: Avoid printing leading zeroes by %p on 32 bit systems.
    
    * common/estream-printf.c (pr_pointer): Synchronize definition of
    AULONG with its use.

diff --git a/common/estream-printf.c b/common/estream-printf.c
index 797f9aa..848ff03 100644
--- a/common/estream-printf.c
+++ b/common/estream-printf.c
@@ -1231,7 +1231,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;

-----------------------------------------------------------------------

Summary of changes:
 common/estream-printf.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
The GNU Privacy Guard
http://git.gnupg.org




More information about the Gnupg-commits mailing list