From a57cbd7b27b3d254c71cb3b175e44e95550ef28d Mon Sep 17 00:00:00 2001 From: kosaki Date: Tue, 19 Jun 2012 21:49:52 +0000 Subject: * random.c (rb_random_int32): get rid of "warning: constant 0x100000000 is so big it is long" warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36144 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'random.c') diff --git a/random.c b/random.c index d05fe6d9c6..7244a00538 100644 --- a/random.c +++ b/random.c @@ -911,7 +911,7 @@ rb_random_int32(VALUE obj) rb_random_t *rnd = try_get_rnd(obj); if (!rnd) { #if SIZEOF_LONG * CHAR_BIT > 32 - VALUE lim = ULONG2NUM(0x100000000); + VALUE lim = ULONG2NUM(0x100000000UL); #elif defined HAVE_LONG_LONG VALUE lim = ULL2NUM((LONG_LONG)0xffffffff+1); #else -- cgit v1.2.3