From d86574bb866eb1177fac8f0e7227799e1b340ccd Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 18 Mar 2018 10:41:53 +0000 Subject: compile.c: fix function name [ci skip] * compile.c (ibf_dump_object_object): fix a probable typo in the function name, s/lbf/ibf/. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62807 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- compile.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compile.c') diff --git a/compile.c b/compile.c index b90ff792ad..6c7492dac3 100644 --- a/compile.c +++ b/compile.c @@ -9330,7 +9330,7 @@ static ibf_dump_object_function dump_object_functions[RUBY_T_MASK+1] = { }; static ibf_offset_t -lbf_dump_object_object(struct ibf_dump *dump, VALUE obj) +ibf_dump_object_object(struct ibf_dump *dump, VALUE obj) { struct ibf_object_header obj_header; ibf_offset_t current_offset = ibf_dump_pos(dump); @@ -9435,7 +9435,7 @@ ibf_dump_object_list(struct ibf_dump *dump, struct ibf_header *header) for (i=0; iobj_list); i++) { VALUE obj = RARRAY_AREF(dump->obj_list, i); - ibf_offset_t offset = lbf_dump_object_object(dump, obj); + ibf_offset_t offset = ibf_dump_object_object(dump, obj); rb_ary_push(list, UINT2NUM(offset)); } size = i; -- cgit v1.2.3