From 0665896a5593fb41c92cbf164182a058ee40518c Mon Sep 17 00:00:00 2001 From: Valentin Bartenev Date: Wed, 4 Apr 2018 18:13:05 +0300 Subject: Style: capitalized letters in hexadecimal literals. --- src/nxt_types.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/nxt_types.h') diff --git a/src/nxt_types.h b/src/nxt_types.h index 4c501556..f07ab6e7 100644 --- a/src/nxt_types.h +++ b/src/nxt_types.h @@ -82,8 +82,8 @@ typedef time_t nxt_time_t; #define NXT_INT64_T_HEXLEN (sizeof("fffffffffffffffff") - 1) #define NXT_INT32_T_HEXLEN (sizeof("ffffffff") - 1) -#define NXT_INT64_T_MAX 0x7fffffffffffffffLL -#define NXT_INT32_T_MAX 0x7fffffff +#define NXT_INT64_T_MAX 0x7FFFFFFFFFFFFFFFLL +#define NXT_INT32_T_MAX 0x7FFFFFFF #if (NXT_INT_T_SIZE == 8) -- cgit