[SuperH]: fix IMM format specifier in test (#2080)

This commit is contained in:
Anton Kochkov 2023-07-19 00:03:30 +08:00 committed by GitHub
parent cc9994ea17
commit be5a26c754

View File

@ -96,7 +96,7 @@ static void print_insn_detail(csh handle, cs_insn *insn)
break;
case SH_OP_IMM:
printf("\t\toperands[%u].type: IMMEDIATE = #%lu\n", i,
printf("\t\toperands[%u].type: IMMEDIATE = #%llu\n", i,
op->imm);
break;