From cb6a8125a9b2acbc4085714a1f7c6bade2621125 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Sun, 18 Sep 2011 19:50:11 +0200 Subject: [PATCH] d3dxof: Fix printing NULL strings. --- dlls/d3dxof/d3dxof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3dxof/d3dxof.c b/dlls/d3dxof/d3dxof.c index b8f0f00e942..86783960d61 100644 --- a/dlls/d3dxof/d3dxof.c +++ b/dlls/d3dxof/d3dxof.c @@ -575,7 +575,7 @@ static HRESULT WINAPI IDirectXFileDataImpl_GetData(IDirectXFileData* iface, LPCS { IDirectXFileDataImpl *This = impl_from_IDirectXFileData(iface); - TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, szMember, pcbSize, ppvData); + TRACE("(%p/%p)->(%s,%p,%p)\n", This, iface, debugstr_a(szMember), pcbSize, ppvData); if (!pcbSize || !ppvData) return DXFILEERR_BADVALUE;