From 057c208b6fccfabe56b035a19666ddf0c777aeec Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Sun, 8 Mar 2020 20:30:03 +0100 Subject: Fix the printf format specifies (again) The PRIu64 et al are missing a "%" sign in front. Fixes: aaf7e68c75a907c3c08e83dfd2972665a0f1c1a3 Signed-off-by: David Oberhollenzer --- include/compat.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/compat.h b/include/compat.h index b67d27f..b2bb054 100644 --- a/include/compat.h +++ b/include/compat.h @@ -36,8 +36,8 @@ # define PRI_U32 "%I32u" #else # include -# define PRI_U64 PRIu64 -# define PRI_U32 PRIu32 +# define PRI_U64 "%" PRIu64 +# define PRI_U32 "%" PRIu32 #endif #if SIZEOF_SIZE_T <= SIZEOF_INT -- cgit v1.2.3