Andrew Talbot : gdi32: Fix a typo.

Alexandre Julliard julliard at winehq.org
Tue Nov 27 09:54:30 CST 2007


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Mon Nov 26 15:09:59 2007 +0000

gdi32: Fix a typo.

---

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

diff --git a/dlls/gdi32/dc.c b/dlls/gdi32/dc.c
index 705d263..161e0df 100644
--- a/dlls/gdi32/dc.c
+++ b/dlls/gdi32/dc.c
@@ -472,7 +472,7 @@ void WINAPI SetDCState( HDC hdc, HDC hdcs )
         release_dc_ptr( dc );
         return;
     }
-    if (!dcs->flags & DC_SAVED)
+    if (!(dcs->flags & DC_SAVED))
     {
         release_dc_ptr( dc );
         release_dc_ptr( dcs );




More information about the wine-cvs mailing list