From f159352112671e3c1e07356ebf6f590d8f79c8ff Mon Sep 17 00:00:00 2001 From: Kang-Che Sung Date: Thu, 5 Sep 2019 23:40:38 +0800 Subject: bc: Add 'U' suffix in UINT_MAX preprocessor check Without the 'U' unsigned suffix, gcc will throw a "integer constant is so large that it is unsigned" warning. Signed-off-by: Kang-Che Sung Signed-off-by: Denys Vlasenko --- miscutils/bc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'miscutils/bc.c') diff --git a/miscutils/bc.c b/miscutils/bc.c index e492f0f50..92721d18f 100644 --- a/miscutils/bc.c +++ b/miscutils/bc.c @@ -844,10 +844,10 @@ struct globals { # error Strange INT_MAX #endif -#if UINT_MAX == 4294967295 +#if UINT_MAX == 4294967295U # define BC_MAX_SCALE_STR "4294967295" # define BC_MAX_STRING_STR "4294967294" -#elif UINT_MAX == 18446744073709551615 +#elif UINT_MAX == 18446744073709551615U # define BC_MAX_SCALE_STR "18446744073709551615" # define BC_MAX_STRING_STR "18446744073709551614" #else -- cgit v1.2.3