Commit 309a8c8d authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

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

parent 3effba78
......@@ -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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment