From 2a41bc04892ef92bdfa404f43d55b9c1fa908e3e Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 5 Sep 2001 22:31:07 +0000 Subject: * 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 --- file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'file.c') diff --git a/file.c b/file.c index 2c14d8fe1..a54f1726a 100644 --- a/file.c +++ b/file.c @@ -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; -- cgit