Skip to content

Commit

Permalink
fix travis arm64 db/asm/dalvik
Browse files Browse the repository at this point in the history
  • Loading branch information
eagleoflqj authored and wargio committed Oct 24, 2020
1 parent bae726b commit 6279aa6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libr/asm/p/asm_dalvik.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ static int dalvik_disassemble (RAsm *a, RAsmOp *op, const ut8 *buf, int len) {
strasm = r_str_append (strasm, str);
break;
case fmtoppAA:
vA = (char) buf[1];
vA = (signed char) buf[1];
//snprintf (str, sizeof (str), " %i", vA*2); // vA : word -> byte
snprintf (str, sizeof (str), " 0x%08"PFMT64x, a->pc + (vA * 2)); // vA : word -> byte
strasm = r_str_append (strasm, str);
Expand Down

0 comments on commit 6279aa6

Please sign in to comment.