From 029fd365df84c4bb40fba4a9b7f89215a0eb3781 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 9 Jun 2014 07:01:44 +0000 Subject: gc.c: fix typo * gc.c (gcdebug_sentinel): fix typo, "sentinel" not "sential". [fix GH-634] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46386 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ gc.c | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index a7748f8427..43aa36b308 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Mon Jun 9 16:01:41 2014 Masahiro Ide + + * gc.c (gcdebug_sentinel): fix typo, "sentinel" not "sential". + [fix GH-634] + Mon Jun 9 00:04:25 2014 Nobuyoshi Nakada * configure.in (posix_fadvise): disable use of posix_fadvise diff --git a/gc.c b/gc.c index 7e373a5d04..1c0c3207b8 100644 --- a/gc.c +++ b/gc.c @@ -7650,7 +7650,7 @@ rb_gcdebug_print_obj_condition(VALUE obj) } static VALUE -gcdebug_sential(VALUE obj, VALUE name) +gcdebug_sentinel(VALUE obj, VALUE name) { fprintf(stderr, "WARNING: object %s(%p) is inadvertently collected\n", (char *)name, (void *)obj); return Qnil; @@ -7659,7 +7659,7 @@ gcdebug_sential(VALUE obj, VALUE name) void rb_gcdebug_sentinel(VALUE obj, const char *name) { - rb_define_finalizer(obj, rb_proc_new(gcdebug_sential, (VALUE)name)); + rb_define_finalizer(obj, rb_proc_new(gcdebug_sentinel, (VALUE)name)); } #endif /* GC_DEBUG */ -- cgit v1.2.3