Commit 62277fb7 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

d3drm: Use debugstr_a to print a string that can be NULL.

parent 37954777
......@@ -1069,7 +1069,7 @@ HRESULT load_mesh_data(IDirect3DRMMeshBuilder3 *iface, IDirectXFileData *pData,
return hr;
}
TRACE("Mesh name is '%s'\n", This->name ? This->name : "");
TRACE("Mesh name is %s\n", debugstr_a(This->name));
This->nb_normals = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment