user32: Remove a stray ';' that produces an empty if condition.

Michael Stefaniuc mstefani at redhat.de
Wed Aug 26 17:30:56 CDT 2009


---
 dlls/user32/edit.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/user32/edit.c b/dlls/user32/edit.c
index 83e004a..5a62bc2 100644
--- a/dlls/user32/edit.c
+++ b/dlls/user32/edit.c
@@ -3636,7 +3636,7 @@ static LRESULT EDIT_WM_KeyDown(EDITSTATE *es, INT key)
 	    }
 	    break;
         case VK_ESCAPE:
-            if ((es->style & ES_MULTILINE) && EDIT_IsInsideDialog(es));
+            if ((es->style & ES_MULTILINE) && EDIT_IsInsideDialog(es))
                 PostMessageW(es->hwndParent, WM_CLOSE, 0, 0);
             break;
         case VK_TAB:
-- 
1.6.4



More information about the wine-patches mailing list