From 851e319641b487cb1cd607a2968aaf1a197d84dc Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 20 Aug 2009 15:06:36 +0000 Subject: * io.c (rb_sysopen_internal): removed const qualifier. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24597 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io.c b/io.c index 263c40a76..901cde930 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); } -- cgit