Gerald Pfeifer : user32/tests: Fix MODIFIED macro.

Alexandre Julliard julliard at winehq.org
Mon May 25 10:06:35 CDT 2009


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

Author: Gerald Pfeifer <gerald at pfeifer.com>
Date:   Sun May 24 19:47:24 2009 +0200

user32/tests: Fix MODIFIED macro.

---

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

diff --git a/dlls/user32/tests/text.c b/dlls/user32/tests/text.c
index 47f5274..a55c014 100644
--- a/dlls/user32/tests/text.c
+++ b/dlls/user32/tests/text.c
@@ -27,7 +27,7 @@
 #include "winuser.h"
 #include "winerror.h"
 
-#define MODIFIED(rect) (rect.left = 10 && rect.right != 100 && rect.top == 10 && rect.bottom != 100)
+#define MODIFIED(rect) (rect.left == 10 && rect.right != 100 && rect.top == 10 && rect.bottom != 100)
 #define SAME(rect) (rect.left = 10 && rect.right == 100 && rect.top == 10 && rect.bottom == 100)
 #define EMPTY(rect) (rect.left == rect.right && rect.bottom == rect.top)
 




More information about the wine-cvs mailing list