* encoding.c (rb_locale_charmap): fixed typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21519 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-01-15 04:21:59 +00:00
Родитель ec033198bf
Коммит 994293bc81
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1222,7 +1222,7 @@ rb_locale_charmap(VALUE klass)
const char *nl_langinfo_codeset(void);
const char *codeset = nl_langinfo_codeset();
char cp[sizeof(int) * 3 + 4];
if (codeset) {
if (!codeset) {
snprintf(cp, sizeof(cp), "CP%d", GetConsoleCP());
codeset = cp;
}