mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Fix warnings.
This commit is contained in:
+1
-1
@@ -2409,7 +2409,7 @@ codedump(mrb_state *mrb, int n)
|
||||
|
||||
if (!irep) return;
|
||||
printf("irep %d nregs=%d nlocals=%d pools=%d syms=%d\n", n,
|
||||
irep->nregs, irep->nlocals, irep->plen, irep->slen);
|
||||
irep->nregs, irep->nlocals, (int)irep->plen, (int)irep->slen);
|
||||
for (i=0; i<irep->ilen; i++) {
|
||||
ai = mrb_gc_arena_save(mrb);
|
||||
printf("%03d ", i);
|
||||
|
||||
Reference in New Issue
Block a user