Fix integer size in opcode type attribute (#6000)

This commit is contained in:
Jack Baker 2016-10-19 16:53:42 -07:00 committed by radare
parent ce6d84a02d
commit 98dcb1cde5

View File

@ -35,7 +35,7 @@ typedef struct _opcodes_tag_ {
inst_handler_t handler;
int cycles;
int size;
int type;
ut64 type;
} OPCODE_DESC;
static int avr_op_analyze(RAnal *anal, RAnalOp *op, ut64 addr, const ut8 *buf, CPU_MODEL *cpu);