diff options
author | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-12 11:03:24 +0000 |
---|---|---|
committer | ocean <ocean@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-09-12 11:03:24 +0000 |
commit | 4409f88ad81e5a9317caa554deb26c770d34d95f (patch) | |
tree | 53fbe7d62d46be4b12a32fdefcce7a70e7a4fa88 /io.c | |
parent | 7ecb12dc27fa57b7d0ebae0584f9cef86c8dcb65 (diff) | |
download | ruby-4409f88ad81e5a9317caa554deb26c770d34d95f.tar.gz |
* dln.c: avoid warning of const to non-const convertion.
[ruby-dev:27041]
* eval.c, io.c, ruby.c: ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9128 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'io.c')
-rw-r--r-- | io.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2632,7 +2632,7 @@ rb_file_open(const char *fname, const char *mode) } static VALUE -rb_file_sysopen_internal(VALUE io, char *fname, int flags, int mode) +rb_file_sysopen_internal(VALUE io, const char *fname, int flags, int mode) { OpenFile *fptr; |