* gc.c (init_GC): typo fix(rb_exc_new -> rb_exc_new2).

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2402 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2002-04-24 05:07:07 +00:00
Родитель e3a8c62630
Коммит a117cec653
1 изменённых файлов: 1 добавлений и 1 удалений

2
gc.c
Просмотреть файл

@ -1548,6 +1548,6 @@ Init_GC()
source_filenames = st_init_strtable();
nomem_error = rb_exc_new(rb_eNoMemError, "failed to allocate memory");
nomem_error = rb_exc_new2(rb_eNoMemError, "failed to allocate memory");
rb_global_variable(&nomem_error);
}