From b7cf84f54257c6eac808361f14cea4dc2f82decc Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Fri, 7 Jan 2022 17:33:32 +0100 Subject: [PATCH] LibC: Fix up a few copy-pasted INTMAX parameter names --- Userland/Libraries/LibC/bits/stdint.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Userland/Libraries/LibC/bits/stdint.h b/Userland/Libraries/LibC/bits/stdint.h index 108f0212af..7f0e2b3fc7 100644 --- a/Userland/Libraries/LibC/bits/stdint.h +++ b/Userland/Libraries/LibC/bits/stdint.h @@ -65,14 +65,14 @@ typedef __INT_LEAST64_TYPE__ int_least64_t; # define INT64_C(x) __int_c(x, __INT64_C_SUFFIX__) # define UINT64_C(x) __int_c(x, __UINT64_C_SUFFIX__) -# define INTMAX_C(c) __int_c(c, __INTMAX_C_SUFFIX__) -# define UINTMAX_C(c) __int_c(x, __UINTMAX_C_SUFFIX__) +# define INTMAX_C(x) __int_c(x, __INTMAX_C_SUFFIX__) +# define UINTMAX_C(x) __int_c(x, __UINTMAX_C_SUFFIX__) #else # define INT64_C(x) __INT64_C(x) # define UINT64_C(x) __UINT64_C(x) -# define INTMAX_C(c) __INTMAX_C(x) -# define UINTMAX_C(c) __UINTMAX_C(x) +# define INTMAX_C(x) __INTMAX_C(x) +# define UINTMAX_C(x) __UINTMAX_C(x) #endif typedef __UINTPTR_TYPE__ uintptr_t;