From 4db0887d67dace8a8c57a44fd1437a320910982b Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 25 Dec 2013 00:47:26 +0000 Subject: file.c: proper types * file.c (rb_file_chown): use proper configured types, not plain int. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@44400 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/file.c b/file.c index aee3fa6851..872d65b8bf 100644 --- a/file.c +++ b/file.c @@ -2292,14 +2292,15 @@ static VALUE rb_file_chown(VALUE obj, VALUE owner, VALUE group) { rb_io_t *fptr; - int o, g; + rb_uid_t o; + rb_gid_t g; #ifndef HAVE_FCHOWN VALUE path; #endif rb_secure(2); - o = NIL_P(owner) ? -1 : NUM2INT(owner); - g = NIL_P(group) ? -1 : NUM2INT(group); + o = NIL_P(owner) ? (rb_uid_t)-1 : NUM2UIDT(owner); + g = NIL_P(group) ? (rb_gid_t)-1 : NUM2GIDT(group); GetOpenFile(obj, fptr); #ifndef HAVE_FCHOWN if (NIL_P(fptr->pathv)) return Qnil; -- cgit v1.2.3