Re: [PATCH] bc: Add 'U' suffix in UINT_MAX preprocessor check

2019-09-12 Thread Denys Vlasenko
Applied, thanks On Thu, Sep 5, 2019 at 5:40 PM Kang-Che Sung wrote: > > Without the 'U' unsigned suffix, gcc will throw a "integer constant is > so large that it is unsigned" warning. > --- > miscutils/bc.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git

[PATCH] bc: Add 'U' suffix in UINT_MAX preprocessor check

2019-09-05 Thread Kang-Che Sung
Without the 'U' unsigned suffix, gcc will throw a "integer constant is so large that it is unsigned" warning. --- miscutils/bc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/miscutils/bc.c b/miscutils/bc.c index e492f0f50..92721d18f 100644 --- a/miscutils/bc.c +++