mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Removed unneeded cast and use the real name
This commit is contained in:
parent
8f6cb5b70b
commit
289d42c932
1 changed files with 1 additions and 1 deletions
2
gc.c
2
gc.c
|
@ -2734,7 +2734,7 @@ static inline void
|
||||||
make_io_zombie(rb_objspace_t *objspace, VALUE obj)
|
make_io_zombie(rb_objspace_t *objspace, VALUE obj)
|
||||||
{
|
{
|
||||||
rb_io_t *fptr = RANY(obj)->as.file.fptr;
|
rb_io_t *fptr = RANY(obj)->as.file.fptr;
|
||||||
make_zombie(objspace, obj, (void (*)(void*))rb_io_fptr_finalize, fptr);
|
make_zombie(objspace, obj, rb_io_fptr_finalize_internal, fptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue