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

Alexandre Julliard julliard at winehq.org
Thu Aug 27 10:31:10 CDT 2009


Module: wine
Branch: master
Commit: 3a7a0eb9dd9b8b68eb93ee9273fcf065cd995da9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=3a7a0eb9dd9b8b68eb93ee9273fcf065cd995da9

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Thu Aug 27 00:30:56 2009 +0200

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

---

 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:




More information about the wine-cvs mailing list