Gerald Pfeifer : d3d8: Fix type of loop variable.

Alexandre Julliard julliard at winehq.org
Fri Jan 4 07:12:44 CST 2008


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

Author: Gerald Pfeifer <gerald at pfeifer.com>
Date:   Thu Jan  3 22:30:11 2008 +0100

d3d8: Fix type of loop variable.

---

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

diff --git a/dlls/d3d8/device.c b/dlls/d3d8/device.c
index 1d1bef7..66b2a62 100644
--- a/dlls/d3d8/device.c
+++ b/dlls/d3d8/device.c
@@ -97,7 +97,7 @@ static ULONG WINAPI IDirect3DDevice8Impl_Release(LPDIRECT3DDEVICE8 iface) {
     TRACE("(%p) : ReleaseRef to %d\n", This, ref);
 
     if (ref == 0) {
-        int i;
+        unsigned i;
 
         TRACE("Releasing wined3d device %p\n", This->WineD3DDevice);
         EnterCriticalSection(&d3d8_cs);




More information about the wine-cvs mailing list