Andrew Talbot : ddraw: Sign-compare warning fix.

Alexandre Julliard julliard at winehq.org
Wed Oct 1 14:09:24 CDT 2008


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

Author: Andrew Talbot <andrew.talbot at talbotville.com>
Date:   Tue Sep 30 20:41:03 2008 +0100

ddraw: Sign-compare warning fix.

---

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

diff --git a/dlls/ddraw/surface.c b/dlls/ddraw/surface.c
index fc481e4..727bcce 100644
--- a/dlls/ddraw/surface.c
+++ b/dlls/ddraw/surface.c
@@ -285,7 +285,7 @@ IDirectDrawSurfaceImpl_Release(IDirectDrawSurface7 *iface)
         IDirectDrawSurfaceImpl *surf;
         IDirectDrawImpl *ddraw;
         IUnknown *ifaceToRelease = This->ifaceToRelease;
-        int i;
+        UINT i;
 
         /* Complex attached surfaces are destroyed implicitly when the root is released */
         EnterCriticalSection(&ddraw_cs);




More information about the wine-cvs mailing list