diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-31 13:57:38 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-08-31 13:57:38 +0000 |
| commit | 754ff73c83240fc4ff0d4241c3440f66138b7200 (patch) | |
| tree | 8ffa400bbc52046f9cb30231f43b236ade88c7a6 | |
| parent | b4281971ed7cf2c45804a62d6c0b19b8c3672296 (diff) | |
| download | ruby-754ff73c83240fc4ff0d4241c3440f66138b7200.tar.gz ruby-754ff73c83240fc4ff0d4241c3440f66138b7200.tar.xz ruby-754ff73c83240fc4ff0d4241c3440f66138b7200.zip | |
* process.c (p_gid_sw_ensure): return VALUE.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 2 | ||||
| -rw-r--r-- | process.c | 4 |
2 files changed, 4 insertions, 2 deletions
@@ -2,6 +2,8 @@ Sun Aug 31 22:46:55 2003 WATANABE Hirofumi <eban@ruby-lang.org> * eval.c (TAG_DST()): take no argument. + * process.c (p_gid_sw_ensure): return VALUE. + Sun Aug 31 22:27:10 2003 <nagai@dumbo.ai.kyutech.ac.jp> * process.c (p_gid_sw_ensure): lack of function type @@ -2192,7 +2192,7 @@ p_gid_sw_ensure(id) int id; { under_gid_switch = 0; - rb_setegid_core(id); + return rb_setegid_core(id); } static VALUE @@ -2236,7 +2236,7 @@ p_gid_sw_ensure(obj) VALUE obj; { under_gid_switch = 0; - p_gid_exchange(obj); + return p_gid_exchange(obj); } static VALUE |
