Francois Gouget : d3dxof: Fix printing NULL strings.
Module: wine Branch: master Commit: cb6a8125a9b2acbc4085714a1f7c6bade2621125 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cb6a8125a9b2acbc4085714a1f... Author: Francois Gouget <fgouget(a)free.fr> Date: Sun Sep 18 19:50:11 2011 +0200 d3dxof: Fix printing NULL strings. --- dlls/d3dxof/d3dxof.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/d3dxof/d3dxof.c b/dlls/d3dxof/d3dxof.c index b8f0f00..8678396 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;
participants (1)
-
Alexandre Julliard