tests: fix test_systemz.c following last changes on SystemZ's Op
This commit is contained in:
parent
b3d000a841
commit
cf2f9e1c17
|
@ -45,7 +45,7 @@ static void print_insn_detail(cs_insn *ins)
|
|||
printf("\t\toperands[%u].type: REG = %s\n", i, cs_reg_name(handle, op->reg));
|
||||
break;
|
||||
case SYSZ_OP_IMM:
|
||||
printf("\t\toperands[%u].type: IMM = 0x%x\n", i, op->imm);
|
||||
printf("\t\toperands[%u].type: IMM = 0x%"PRIx64"\n", i, op->imm);
|
||||
break;
|
||||
case SYSZ_OP_MEM:
|
||||
printf("\t\toperands[%u].type: MEM\n", i);
|
||||
|
|
Loading…
Reference in New Issue