Gerald Pfeifer : d3d9: Fix type of loop variable.
Module: wine Branch: master Commit: 0060027e4b86989a3fd4bec35afaabb9b55c6a79 URL: http://source.winehq.org/git/wine.git/?a=commit;h=0060027e4b86989a3fd4bec35a... Author: Gerald Pfeifer <gerald(a)pfeifer.com> Date: Thu Jan 3 22:30:11 2008 +0100 d3d9: Fix type of loop variable. --- dlls/d3d9/device.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/d3d9/device.c b/dlls/d3d9/device.c index 9c50769..c20d98e 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);
participants (1)
-
Alexandre Julliard