[PATCH] d3dx9_36: Use %u to print unsigned integer

Christian Costa titan.costa at wanadoo.fr
Fri Mar 19 05:55:54 CDT 2010


---

 dlls/d3dx9_36/texture.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
-------------- next part --------------
diff --git a/dlls/d3dx9_36/texture.c b/dlls/d3dx9_36/texture.c
index f0773b9..3ab4541 100644
--- a/dlls/d3dx9_36/texture.c
+++ b/dlls/d3dx9_36/texture.c
@@ -30,7 +30,7 @@ HRESULT WINAPI D3DXCreateTexture(LPDIRECT3DDEVICE9 pDevice,
                                  D3DPOOL pool,
                                  LPDIRECT3DTEXTURE9 *ppTexture)
 {
-    FIXME("(%p, %d, %d, %d, %x, %x, %x, %p): semi-stub\n", pDevice, width, height, miplevels, usage, format,
+    FIXME("(%p, %u, %u, %u, %x, %x, %x, %p): semi-stub\n", pDevice, width, height, miplevels, usage, format,
         pool, ppTexture);
 
     return IDirect3DDevice9_CreateTexture(pDevice, width, height, miplevels, usage, format, pool, ppTexture, NULL);
@@ -52,7 +52,7 @@ HRESULT WINAPI D3DXCreateTextureFromFileInMemoryEx(LPDIRECT3DDEVICE9 device,
                                                    PALETTEENTRY* palette,
                                                    LPDIRECT3DTEXTURE9* texture)
 {
-    FIXME("(%p, %p, %d, %d, %d, %d, %x, %x, %x, %d, %d, %x, %p, %p, %p): stub\n", device, srcdata, srcdatasize, width,
+    FIXME("(%p, %p, %u, %u, %u, %u, %x, %x, %x, %u, %u, %x, %p, %p, %p): stub\n", device, srcdata, srcdatasize, width,
         height, miplevels, usage, format, pool, filter, mipfilter, colorkey, srcinfo, palette, texture);
 
     return E_NOTIMPL;


More information about the wine-patches mailing list