kernel32: Remove unneeded casts of zero.

Francois Gouget fgouget at free.fr
Mon Dec 8 02:26:38 CST 2008


---
 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)
               {
-- 
1.5.6.5




More information about the wine-patches mailing list