wined3d: Shorten the long line.

Vitaliy Margolen wine-patch at kievinfo.com
Mon May 29 16:10:15 CDT 2006


ChangeLog:
wined3d: Shorten the long line.

 dlls/wined3d/resource.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
-------------- next part --------------
49d45f1e6f56cc7335aa724137073fddf079e75e
diff --git a/dlls/wined3d/resource.c b/dlls/wined3d/resource.c
index 168c166..792b1ad 100644
--- a/dlls/wined3d/resource.c
+++ b/dlls/wined3d/resource.c
@@ -235,7 +235,8 @@ void dumpResources(ResourceList *resourc
     ResourceList *iterator = resources;
 
     while(iterator) {
-        FIXME("Leftover resource %p with type %d,%s\n", iterator->resource, IWineD3DResource_GetType(iterator->resource), debug_d3dresourcetype(IWineD3DResource_GetType(iterator->resource)));
+        WINED3DRESOURCETYPE res_type = IWineD3DResource_GetType(iterator->resource);
+        FIXME("Leftover resource %p with type %d,%s\n", iterator->resource, res_type, debug_d3dresourcetype(res_type));
         iterator = iterator->next;
     }
 }


More information about the wine-patches mailing list