Commit 550e2a9f authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

d3dcompiler_43/tests: Fix printing a NULL string.

parent 7d13898f
......@@ -1440,7 +1440,7 @@ static HRESULT WINAPI testD3DInclude_open(ID3DInclude *iface, D3D_INCLUDE_TYPE i
char include3[] = "vs.1.1\n";
trace("filename %s\n", filename);
trace("parent_data (%p) -> %s\n", parent_data, (char *)parent_data);
trace("parent_data (%p) -> %s\n", parent_data, parent_data ? (char *)parent_data : "(null)");
if (!strcmp(filename, "incl.vsh"))
{
......
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