Gerald Pfeifer : wine: Use { } instead of ; for an empty basic block.
Module: wine Branch: master Commit: 309a8c8d48b7daa790253146f24564e65fa6b287 URL: http://source.winehq.org/git/wine.git/?a=commit;h=309a8c8d48b7daa790253146f2... Author: Gerald Pfeifer <gerald(a)pfeifer.com> Date: Sun Apr 17 01:23:32 2011 +0200 wine: Use { } instead of ; for an empty basic block. --- dlls/krnl386.exe16/instr.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dlls/krnl386.exe16/instr.c b/dlls/krnl386.exe16/instr.c index 61f92ab..5db0b2b 100644 --- a/dlls/krnl386.exe16/instr.c +++ b/dlls/krnl386.exe16/instr.c @@ -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) {
participants (1)
-
Alexandre Julliard