diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-26 07:41:55 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-26 07:41:55 +0000 |
commit | 0eb31be6818ee400b30899f77f6bcbe0722ea35f (patch) | |
tree | adc14d708bea40a4a376683f01458e1cc12a3273 /random.c | |
parent | b3545895d1bb5a72e1311022c69b882d6ce90033 (diff) | |
download | ruby-0eb31be6818ee400b30899f77f6bcbe0722ea35f.tar.gz |
* 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
Diffstat (limited to 'random.c')
-rw-r--r-- | random.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |