wine: Use { } instead of ; for an empty basic block.

This commit is contained in:
Gerald Pfeifer 2011-04-17 01:23:32 +02:00 committed by Alexandre Julliard
parent 3effba7805
commit 309a8c8d48
1 changed files with 4 additions and 2 deletions

View File

@ -632,11 +632,13 @@ DWORD __wine_emulate_instruction( EXCEPTION_RECORD *rec, CONTEXT *context )
int seg = outp ? context->SegDs : context->SegEs; /* FIXME: is this right? */
if (outp)
{
/* FIXME: Check segment is readable. */
;
}
else
{
/* FIXME: Check segment is writable. */
;
}
if (repX)
{