From 0060027e4b86989a3fd4bec35afaabb9b55c6a79 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Thu, 3 Jan 2008 22:30:11 +0100 Subject: [PATCH] d3d9: Fix type of loop variable. --- dlls/d3d9/device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index 9c507696e01..c20d98eec84 100644 --- a/dlls/d3d9/device.c +++ b/dlls/d3d9/device.c @@ -61,7 +61,7 @@ static ULONG WINAPI IDirect3DDevice9Impl_Release(LPDIRECT3DDEVICE9 iface) { TRACE("(%p) : ReleaseRef to %d\n", This, ref); if (ref == 0) { - int i; + unsigned i; This->inDestruction = TRUE; EnterCriticalSection(&d3d9_cs);