indentation

This commit is contained in:
Nguyen Anh Quynh 2015-11-14 18:40:11 +08:00
parent 0440c6708f
commit f752e9905a
1 changed files with 3 additions and 3 deletions

View File

@ -460,11 +460,11 @@ public class Capstone {
PointerByReference insnRef = new PointerByReference();
NativeLong c = cs.cs_disasm(ns.csh, code, new NativeLong(code.length), address, new NativeLong(count), insnRef);
if (0 == c.intValue()) {
return null;
return null;
}
Pointer p = insnRef.getValue();
_cs_insn byref = new _cs_insn(p);