summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-20 15:06:36 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-08-20 15:06:36 +0000
commit4b82d3b6b8734049d916d0f7fb0eee9ef29f6324 (patch)
treee61d8d718a875a2a69d02af6182cfe66a2d806e0
parent36c9cddf6cc5306b792669ce31825a6e2d065a5c (diff)
* 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
-rw-r--r--io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io.c b/io.c
index 263c40a768..901cde930e 100644
--- a/io.c
+++ b/io.c
@@ -4456,7 +4456,7 @@ sysopen_func(void *ptr)
}
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);
}