From fe502128b8e80119873824b878b81cfff55d2c56 Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Tue, 8 Dec 2015 17:37:01 +0100 Subject: [PATCH] main: fix compiler warning --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index c2c33f56..46f0f31b 100644 --- a/main.c +++ b/main.c @@ -76,7 +76,7 @@ do_platform_checks(void) the usual implementation of conversion of unsigned integers */ assert(sizeof (int) >= 4); assert(-1 == ~0); - assert((int32_t)4294967295 == (int32_t)-1); + assert((int32_t)4294967295U == (int32_t)-1); } /* ================================================== */ -- 2.47.2