From 0eb31be6818ee400b30899f77f6bcbe0722ea35f Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 26 Aug 2010 07:41:55 +0000 Subject: [PATCH] * random.c (rb_random_int32): suppress warning on LP64 platforms. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29103 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- random.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/random.c b/random.c index 25c9dea1ff..64b1cec4b1 100644 --- a/random.c +++ b/random.c @@ -894,7 +894,7 @@ rb_random_int32(VALUE obj) #else VALUE lim = rb_big_plus(ULONG2NUM(0xffffffff), INT2FIX(1)); #endif - return NUM2ULONG(rb_funcall2(obj, id_rand, 1, &lim)); + return (unsigned int)NUM2ULONG(rb_funcall2(obj, id_rand, 1, &lim)); } return genrand_int32(&rnd->mt); }