d3dx9_36/tests: Fix printing a NULL string.

oldstable
André Hentschel 2011-08-29 21:11:01 +02:00 committed by Alexandre Julliard
parent 030ea68963
commit 3ddda7b66b
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ static HRESULT WINAPI testD3DXInclude_open(ID3DXInclude *iface,
const 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")) {
buffer = HeapAlloc(GetProcessHeap(), 0, sizeof(include));