* localeinit.c (rb_locale_charmap_index): fix prototype. [Bug #12118]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@54291 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2016-03-25 21:35:39 +00:00
Родитель b4843d9a52
Коммит 2709170e96
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Sat Mar 26 06:34:24 2016 NARUSE, Yui <naruse@ruby-lang.org>
* localeinit.c (rb_locale_charmap_index): fix prototype. [Bug #12118]
Fri Mar 25 16:40:48 2016 Martin Duerst <duerst@it.aoyama.ac.jp>
* test/ruby/enc/test_case_mapping.rb: Additional tests title case;

Просмотреть файл

@ -89,7 +89,7 @@ enc_find_index(const char *name)
}
int
rb_locale_charmap_index(VALUE klass)
rb_locale_charmap_index(void)
{
return (int)locale_charmap(enc_find_index);
}