diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-09-05 22:31:07 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-09-05 22:31:07 +0000 |
| commit | 2a41bc04892ef92bdfa404f43d55b9c1fa908e3e (patch) | |
| tree | 0ee0ed7f4c7d2df2ff1a2a4f7519bec2225c95aa /file.c | |
| parent | c4d73f4c2c4d86c93d31c248c968db1f1edb30f7 (diff) | |
| download | ruby-2a41bc04892ef92bdfa404f43d55b9c1fa908e3e.tar.gz ruby-2a41bc04892ef92bdfa404f43d55b9c1fa908e3e.tar.xz ruby-2a41bc04892ef92bdfa404f43d55b9c1fa908e3e.zip | |
* file.c (rb_find_file_ext): add const qualifiers to ext.
* intern.h (rb_find_file_ext): ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1731 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'file.c')
| -rw-r--r-- | file.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2286,7 +2286,7 @@ extern VALUE rb_load_path; int rb_find_file_ext(filep, ext) VALUE *filep; - char **ext; + const char *const *ext; { char *path, *e, *found; char *f = RSTRING(*filep)->ptr; |
