From: Bruno Haible Date: Sun, 23 Aug 2020 22:29:41 +0000 (+0200) Subject: inttypes: Fix {PRI,SCN}*PTR on 32-bit native Windows (regr. 2020-07-21). X-Git-Tag: v1.0~3682 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=064f12e7dcd83eebd7c9a7bbba15324a27bc87e7;p=gnulib.git inttypes: Fix {PRI,SCN}*PTR on 32-bit native Windows (regr. 2020-07-21). * m4/inttypes.m4 (gl_INTTYPES_PRI_SCN): Fix syntax error in test program. --- diff --git a/ChangeLog b/ChangeLog index e51ea41e39..e54c89f982 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2020-08-23 Bruno Haible + + inttypes: Fix {PRI,SCN}*PTR on 32-bit native Windows (regr. 2020-07-21). + * m4/inttypes.m4 (gl_INTTYPES_PRI_SCN): Fix syntax error in test + program. + 2020-08-23 Paul Eggert intprops: be consistent about +X vs X+0 diff --git a/m4/inttypes.m4 b/m4/inttypes.m4 index 28bac816b6..84b1654ea2 100644 --- a/m4/inttypes.m4 +++ b/m4/inttypes.m4 @@ -1,4 +1,4 @@ -# inttypes.m4 serial 31 +# inttypes.m4 serial 32 dnl Copyright (C) 2006-2020 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -44,7 +44,7 @@ AC_DEFUN([gl_INTTYPES_PRI_SCN], #ifdef _WIN64 LLP64 #endif - ]]), + ]]) ], [PRIPTR_PREFIX='"l"'], [PRIPTR_PREFIX='"ll"'])