From 623ee7775b3f077babd4ac8e408a408aa5cea543 Mon Sep 17 00:00:00 2001 From: Andrew Talbot Date: Tue, 30 Sep 2008 20:41:03 +0100 Subject: [PATCH] ddraw: Sign-compare warning fix. --- dlls/ddraw/surface.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ddraw/surface.c b/dlls/ddraw/surface.c index fc481e47142..727bcce7913 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); -- 2.11.4.GIT