GCC 2 compilation fix for x86emu.

This commit is contained in:
Alex Smith 2012-08-03 17:12:53 +01:00
parent 74bda98cb2
commit 9bfe064799

View File

@ -10189,8 +10189,8 @@ Handles opcode 0xe8
static void
x86emuOp_call_near_IMM(u8 X86EMU_UNUSED(op1))
{
s16 ip16;
s32 ip32;
s16 ip16 = 0;
s32 ip32 = 0;
START_OF_INSTR();
DECODE_PRINTF("CALL\t");