Francois Gouget : kernel32: Remove unneeded casts of zero.
Module: wine Branch: master Commit: 7e43f8a4fef930566557371951499087a11b1a65 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7e43f8a4fef930566557371951... Author: Francois Gouget <fgouget(a)free.fr> Date: Mon Dec 8 09:26:38 2008 +0100 kernel32: Remove unneeded casts of zero. --- dlls/kernel32/instr.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/kernel32/instr.c b/dlls/kernel32/instr.c index 5e28d95..757f0c5 100644 --- a/dlls/kernel32/instr.c +++ b/dlls/kernel32/instr.c @@ -643,10 +643,10 @@ DWORD __wine_emulate_instruction( EXCEPTION_RECORD *rec, CONTEXT86 *context ) if (outp) /* FIXME: Check segment is readable. */ - (void)0; + ; else /* FIXME: Check segment is writable. */ - (void)0; + ; if (repX) {
participants (1)
-
Alexandre Julliard