From 567568e0bfc38980b622f942ee07b23df189ca44 Mon Sep 17 00:00:00 2001 From: "Paul A. Patience" Date: Sat, 4 Sep 2021 20:45:57 -0400 Subject: itypes: fix usage of double_intptr_t. It has actually never yet been used since its introduction in commit 543f15cdc6b77f31639d87081b35aae3f1caf84a because we never HAVE_DBL_INTPTR_T (it's a typo). * itypes.h: HAVE_DBL_INTPTR_T -> HAVE_DOUBLE_INTPTR_T. --- itypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'itypes.h') diff --git a/itypes.h b/itypes.h index 497486c7..97e50b2b 100644 --- a/itypes.h +++ b/itypes.h @@ -76,7 +76,7 @@ typedef long i64_t; #define HAVE_I64 1 typedef ulonglong_t u64_t; typedef longlong_t i64_t; -#elif HAVE_DBL_INTPTR_T && (SIZEOF_DOUBLE_INTPTR * CHAR_BIT) == 64 +#elif HAVE_DOUBLE_INTPTR_T && (SIZEOF_DOUBLE_INTPTR * CHAR_BIT) == 64 #define HAVE_I64 1 typedef double_uintptr_t u64_t; typedef double_intptr_t i64_t; -- cgit v1.2.3