mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
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
This commit is contained in:
parent
dce4a3f58c
commit
0140921523
1 changed files with 2 additions and 2 deletions
|
@ -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; i<RARRAY_LEN(dump->obj_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;
|
||||
|
|
Loading…
Add table
Reference in a new issue