[前][次][番号順一覧][スレッド一覧]

ruby-changes:32027

From: tmm1 <ko1@a...>
Date: Tue, 10 Dec 2013 12:25:33 +0900 (JST)
Subject: [ruby-changes:32027] tmm1:r44106 (trunk): gc.c: fix typo in function name

tmm1	2013-12-10 12:25:28 +0900 (Tue, 10 Dec 2013)

  New Revision: 44106

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=44106

  Log:
    gc.c: fix typo in function name

  Modified files:
    trunk/gc.c
Index: gc.c
===================================================================
--- gc.c	(revision 44105)
+++ gc.c	(revision 44106)
@@ -4280,7 +4280,7 @@ objspaec_allrefs_destruct_i(st_data_t ke https://github.com/ruby/ruby/blob/trunk/gc.c#L4280
 }
 
 static void
-objspaec_allrefs_destruct(struct st_table *refs)
+objspace_allrefs_destruct(struct st_table *refs)
 {
     st_foreach(refs, objspaec_allrefs_destruct_i, 0);
     st_free_table(refs);
@@ -4376,7 +4376,7 @@ gc_marks_check(rb_objspace_t *objspace, https://github.com/ruby/ruby/blob/trunk/gc.c#L4376
 	rb_bug("%s: GC has problem.", checker_name);
     }
 
-    objspaec_allrefs_destruct(objspace->rgengc.allrefs_table);
+    objspace_allrefs_destruct(objspace->rgengc.allrefs_table);
     objspace->rgengc.allrefs_table = 0;
 }
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]