From ccf647f71cb13a021452b88824e73a6f80819138 Mon Sep 17 00:00:00 2001 From: hsbt Date: Wed, 11 Nov 2015 05:14:36 +0000 Subject: [PATCH] * transcode.c: fix a typo [ci skip][fix GH-1091] Patch by @jwworth git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52534 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ transcode.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 35f66603d7..962f1e1234 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Nov 11 14:14:33 2015 SHIBATA Hiroshi + + * transcode.c: fix a typo + [ci skip][fix GH-1091] Patch by @jwworth + Wed Nov 11 11:58:38 2015 Shugo Maeda * lib/net/ftp.rb (initialize): Connections are in passive mode per diff --git a/transcode.c b/transcode.c index d5add7b6e7..39b4b0bab2 100644 --- a/transcode.c +++ b/transcode.c @@ -154,7 +154,7 @@ struct rb_econv_t { typedef struct { const char *sname; const char *dname; - const char *lib; /* null means means no need to load a library */ + const char *lib; /* null means no need to load a library */ const rb_transcoder *transcoder; } transcoder_entry_t;