* io.c (rb_sysopen_internal): removed const qualifier.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@24597 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
36c9cddf6c
commit
4b82d3b6b8
2
io.c
2
io.c
@ -4456,7 +4456,7 @@ sysopen_func(void *ptr)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static inline int
|
static inline int
|
||||||
rb_sysopen_internal(const struct sysopen_struct *data)
|
rb_sysopen_internal(struct sysopen_struct *data)
|
||||||
{
|
{
|
||||||
return (int)rb_thread_blocking_region(sysopen_func, data, RUBY_UBF_IO, 0);
|
return (int)rb_thread_blocking_region(sysopen_func, data, RUBY_UBF_IO, 0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user