Michael Stefaniuc : gameux: Don't compare with TRUE.

Alexandre Julliard julliard at winehq.org
Mon Oct 3 17:21:23 CDT 2011


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

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Sat Oct  1 21:40:11 2011 +0200

gameux: Don't compare with TRUE.

---

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

diff --git a/dlls/gameux/gamestatistics.c b/dlls/gameux/gamestatistics.c
index b40975f..96b35d5 100644
--- a/dlls/gameux/gamestatistics.c
+++ b/dlls/gameux/gamestatistics.c
@@ -946,7 +946,7 @@ static HRESULT WINAPI GameStatisticsImpl_Save(
 
     TRACE("(%p, %d)\n", This, trackChanges);
 
-    if(trackChanges == TRUE)
+    if(trackChanges)
         FIXME("tracking changes not yet implemented\n");
 
     hr = GAMEUX_updateStatisticsFile(&This->stats);




More information about the wine-cvs mailing list