Module: wine Branch: master Commit: 623ee7775b3f077babd4ac8e408a408aa5cea543 URL: http://source.winehq.org/git/wine.git/?a=commit;h=623ee7775b3f077babd4ac8e40...
Author: Andrew Talbot andrew.talbot@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);