dfilter: Fix range registers in DFVM dump

This commit is contained in:
João Valverde 2022-04-05 02:43:17 +01:00
parent cb1b4fb966
commit d91734ab6a
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ dfvm_dump_str(wmem_allocator_t *alloc, dfilter_t *df, gboolean print_references)
case MK_RANGE:
arg3 = insn->arg3;
wmem_strbuf_append_printf(buf, "%05d MK_RANGE\t\t%s[%s] -> %s\n",
id, arg1_str, arg2_str, arg3_str);
id, arg1_str, arg3_str, arg2_str);
break;
case ALL_EQ: