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