From 5fbd57b61a4d9646930c706f176218423a17cc6a Mon Sep 17 00:00:00 2001 From: hpa Date: Thu, 15 Jan 2004 20:21:42 +0000 Subject: [PATCH] Use the correct magic for long long --- config.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config.h b/config.h index 6a99b73..a3370ff 100644 --- a/config.h +++ b/config.h @@ -134,9 +134,9 @@ #ifdef HAVE_LONG_LONG typedef long long intmax_t; typedef unsigned long long uintmax_t; -#define PRIdMAX "Ld" -#define PRIuMAX "Lu" -#define PRIxMAX "Lx" +#define PRIdMAX "lld" +#define PRIuMAX "llu" +#define PRIxMAX "llx" #define INTMAX_C(x) (x##LL) #define UINTMAX_C(x) (x##ULL) #else