Skip to content

Commit 2d11357

Browse files
committed
Adjust indents [ci skip]
1 parent 6602b58 commit 2d11357

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

ext/yarp/api_pack.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ pack_parse(VALUE self, VALUE version_symbol, VALUE variant_symbol, VALUE format_
188188
const char *directive_start = format;
189189

190190
yp_pack_result parse_result = yp_pack_parse(variant, &format, format_end, &type, &signed_type, &endian,
191-
&size, &length_type, &length, &encoding);
191+
&size, &length_type, &length, &encoding);
192192

193193
const char *directive_end = format;
194194

@@ -214,14 +214,14 @@ pack_parse(VALUE self, VALUE version_symbol, VALUE variant_symbol, VALUE format_
214214
}
215215

216216
VALUE directive_args[9] = { version_symbol,
217-
variant_symbol,
218-
rb_usascii_str_new(directive_start, directive_end - directive_start),
219-
pack_type_to_symbol(type),
220-
pack_signed_to_symbol(signed_type),
221-
pack_endian_to_symbol(endian),
222-
pack_size_to_symbol(size),
223-
pack_length_type_to_symbol(length_type),
224-
(long) LONG2NUM(length) };
217+
variant_symbol,
218+
rb_usascii_str_new(directive_start, directive_end - directive_start),
219+
pack_type_to_symbol(type),
220+
pack_signed_to_symbol(signed_type),
221+
pack_endian_to_symbol(endian),
222+
pack_size_to_symbol(size),
223+
pack_length_type_to_symbol(length_type),
224+
(long) LONG2NUM(length) };
225225

226226
rb_ary_push(directives_array, rb_class_new_instance(9, directive_args, rb_cYARPPackDirective));
227227
}

0 commit comments

Comments
 (0)