From 8d57663795c069ded955be9694ead7551c505ae3 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 28 Nov 2011 02:21:44 +0000 Subject: [PATCH] Code cleanup --- src/arch/i386.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/arch/i386.h b/src/arch/i386.h index 4161b6e..fa90dda 100644 --- a/src/arch/i386.h +++ b/src/arch/i386.h @@ -473,7 +473,8 @@ static int _i386_encode(ArchPlugin * plugin, ArchInstruction * instruction, definitions[1] = instruction->op2; definitions[2] = instruction->op3; for(i = 0; i < call->operands_cnt; i++) - if(_encode_operand(plugin, &i, definitions, call->operands) != 0) + if(_encode_operand(plugin, &i, definitions, call->operands) + != 0) return -1; return 0; }