From df4b0a831e3f6cf62a99bce74c7d87e32899d929 Mon Sep 17 00:00:00 2001 From: Jeff Latimer Date: Sun, 9 Apr 2006 09:15:41 +1000 Subject: [PATCH] usp10: Terminate some strings in fixmes and traces. --- dlls/usp10/usp10.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c index 729996821a4..030498fba2c 100644 --- a/dlls/usp10/usp10.c +++ b/dlls/usp10/usp10.c @@ -228,7 +228,7 @@ HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItem /* Set SCRIPT_ITEM */ pItems[1].iCharPos = cInChars - pItems[0].iCharPos ; /* the last + 1 item contains the ptr to the lastchar */ - TRACE("%s,%d,%d,%p,%p,%p,%p,%d\n", debugstr_w(pwcInChars), cInChars, cMaxItems, + TRACE("%s,%d,%d,%p,%p,%p,%p,%d\n", debugstr_wn(pwcInChars, cInChars), cInChars, cMaxItems, psControl, psState, pItems, pcItems, *pcItems); TRACE("Start Pos in string: %d, Stop Pos %d\n", pItems[0].iCharPos, pItems[1].iCharPos); return 0; @@ -279,7 +279,7 @@ HRESULT WINAPI ScriptStringFree(SCRIPT_STRING_ANALYSIS *pssa) { * */ HRESULT WINAPI ScriptIsComplex(const WCHAR* pwcInChars, int cInChars, DWORD dwFlags) { - FIXME("(%s,%d,0x%lx): stub\n", debugstr_w(pwcInChars), cInChars, dwFlags); + FIXME("(%s,%d,0x%lx): stub\n", debugstr_wn(pwcInChars, cInChars), cInChars, dwFlags); return E_NOTIMPL; } /*********************************************************************** @@ -371,7 +371,7 @@ HRESULT WINAPI ScriptPlace(HDC hdc, SCRIPT_CACHE *psc, const WORD *pwGlyphs, LPABC lpABC; Scriptcache *pScriptcache; FIXME("(%p, %p, %p, %s, %d, %p, %p, %p): semi-stub\n", hdc, psc, pwGlyphs, - debugstr_w(pwGlyphs), + debugstr_wn(pwGlyphs, cGlyphs), cGlyphs, psva, psa, piAdvance); -- 2.11.4.GIT