From 064f12e7dcd83eebd7c9a7bbba15324a27bc87e7 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Mon, 24 Aug 2020 00:29:41 +0200 Subject: [PATCH] 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. --- ChangeLog | 6 ++++++ m4/inttypes.m4 | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) 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"']) -- 2.39.5