mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
iseq.c: removed unnecessary zero-fills
This commit is contained in:
parent
6033423d68
commit
812a438145
1 changed files with 3 additions and 2 deletions
5
iseq.c
5
iseq.c
|
@ -2183,9 +2183,10 @@ rb_iseq_disasm_recursive(const rb_iseq_t *iseq, VALUE indent)
|
|||
int li = body->local_table_size - --i - 1;
|
||||
long width;
|
||||
VALUE name = local_var_name(iseq, 0, i);
|
||||
char argi[0x100] = "";
|
||||
char opti[0x100] = "";
|
||||
char argi[0x100];
|
||||
char opti[0x100];
|
||||
|
||||
opti[0] = '\0';
|
||||
if (body->param.flags.has_opt) {
|
||||
int argc = body->param.lead_num;
|
||||
int opts = body->param.opt_num;
|
||||
|
|
Loading…
Reference in a new issue