From: miod Date: Sat, 18 Feb 2023 08:52:39 +0000 (+0000) Subject: Put explicit ULL suffix to constants which won't fit in 32 bits. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=3fc45b72fb43a50f772ee976b6be2b6c8f460f0c;p=openbsd Put explicit ULL suffix to constants which won't fit in 32 bits. --- diff --git a/games/random/random.c b/games/random/random.c index 7da7117b430..6d060a25160 100644 --- a/games/random/random.c +++ b/games/random/random.c @@ -1,4 +1,4 @@ -/* $OpenBSD: random.c,v 1.21 2022/08/23 06:35:53 tb Exp $ */ +/* $OpenBSD: random.c,v 1.22 2023/02/18 08:52:39 miod Exp $ */ /* $NetBSD: random.c,v 1.3 1995/04/22 07:44:05 cgd Exp $ */ /* @@ -72,7 +72,7 @@ int clz64(uint64_t x) { static const uint64_t mask[] = { - 0xffffffff00000000, 0xffff0000, 0xff00, 0xf0, 0xc, 0x2, + 0xffffffff00000000ULL, 0xffff0000, 0xff00, 0xf0, 0xc, 0x2, }; static const int zeroes[] = { 32, 16, 8, 4, 2, 1,