tests: fix test_systemz.c following last changes on SystemZ's Op

This commit is contained in:
Nguyen Anh Quynh 2014-03-23 09:20:47 +08:00
parent b3d000a841
commit cf2f9e1c17
1 changed files with 1 additions and 1 deletions

View File

@ -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);