Skip to content

Commit

Permalink
java: a call to printf() in TestArm.java is missing a variable
Browse files Browse the repository at this point in the history
  • Loading branch information
aquynh committed Oct 10, 2014
1 parent db8eaa3 commit b10418e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/java/TestArm.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static void print_ins_detail(Capstone.CsInsn ins) {
if (i.shift.type != ARM_SFT_INVALID && i.shift.value > 0)
System.out.printf("\t\t\tShift: %d = %d\n", i.shift.type, i.shift.value);
if (i.subtracted)
System.out.printf("\t\t\toperands[%d].subtracted = True\n");
System.out.printf("\t\t\toperands[%d].subtracted = True\n", c);
}
}
if (operands.writeback)
Expand Down

0 comments on commit b10418e

Please sign in to comment.