diff --git a/ChangeLog b/ChangeLog index c0942531ee..447ba2e98f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +Tue Mar 8 01:11:44 2011 NARUSE, Yui + + * process.c (maxgroups): cast because sysconf(3)'s return value is long. + + * process.c (proc_setmaxgroups): ditto. + + * process.c (proc_setgroups): cast because RARRAY_LEN() is long. + Tue Mar 8 00:02:47 2011 Tanaka Akira * ext/openssl/ossl_pkey_rsa.c: parenthesize macro arguments. diff --git a/process.c b/process.c index 1750234bdd..c1832de2a2 100644 --- a/process.c +++ b/process.c @@ -4545,7 +4545,7 @@ static int _maxgroups = -1; static int maxgroups(void) { if (_maxgroups < 0) { - _maxgroups = sysconf(_SC_NGROUPS_MAX); + _maxgroups = (int)sysconf(_SC_NGROUPS_MAX); if (_maxgroups < 0) _maxgroups = RB_MAX_GROUPS; } @@ -4626,7 +4626,7 @@ proc_setgroups(VALUE obj, VALUE ary) if (RARRAY_LEN(ary) > maxgroups()) rb_raise(rb_eArgError, "too many groups, %d max", maxgroups()); - ngroups = RARRAY_LEN(ary); + ngroups = (int)RARRAY_LEN(ary); groups = ALLOCA_N(rb_gid_t, ngroups); for (i = 0; i < ngroups; i++) { @@ -4729,7 +4729,7 @@ static VALUE proc_setmaxgroups(VALUE obj, VALUE val) { int ngroups = FIX2INT(val); - int ngroups_max = sysconf(_SC_NGROUPS_MAX); + int ngroups_max = (int)sysconf(_SC_NGROUPS_MAX); if (ngroups <= 0) rb_raise(rb_eArgError, "maxgroups %d shold be positive", ngroups);