d3dcompiler_43/tests: Fix printing a NULL string.

oldstable
André Hentschel 2011-08-29 21:10:56 +02:00 committed by Alexandre Julliard
parent 7d13898fbb
commit 550e2a9f6a
1 changed files with 1 additions and 1 deletions

View File

@ -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"))
{