mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* process.c (p_gid_sw_ensure): return VALUE.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4471 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ea1dc90ae4
commit
6f8f8959b7
2 changed files with 4 additions and 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
|
||||
|
|
Loading…
Reference in a new issue