1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* transcode.c (rb_econv_init_by_convpath_i): make it static.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21883 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2009-01-29 17:57:13 +00:00
parent 1a89baadd3
commit 07aeaa0686
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Fri Jan 30 02:55:56 2009 Tanaka Akira <akr@fsij.org>
* transcode.c (rb_econv_init_by_convpath_i): make it static.
Thu Jan 29 16:22:41 2009 Shugo Maeda <shugo@ruby-lang.org>
* load.c (rb_feature_provided): should not calculate len by pointer

View file

@ -2909,7 +2909,8 @@ struct rb_econv_init_by_convpath_t {
int ret;
};
void rb_econv_init_by_convpath_i(const char *sname, const char *dname, int depth, void *arg)
static void
rb_econv_init_by_convpath_i(const char *sname, const char *dname, int depth, void *arg)
{
struct rb_econv_init_by_convpath_t *a = (struct rb_econv_init_by_convpath_t *)arg;
int ret;