usp10: Fix trace to remove an incorrect assignment.

This commit is contained in:
Jeff Latimer 2010-02-28 22:58:44 +11:00 committed by Alexandre Julliard
parent 9924b40eb9
commit d970ea7fd7
1 changed files with 1 additions and 1 deletions

View File

@ -604,7 +604,7 @@ HRESULT WINAPI ScriptItemize(const WCHAR *pwcInChars, int cInChars, int cMaxItem
* checks the n+1 structure */
memset(&pItems[index+1].a, 0, sizeof(SCRIPT_ANALYSIS));
TRACE("index=%d cnt=%d iCharPos=%d\n", index+1, cnt, pItems[index+1].iCharPos = cnt);
TRACE("index=%d cnt=%d iCharPos=%d\n", index+1, cnt, pItems[index+1].iCharPos);
/* Set one SCRIPT_STATE item being returned */
if (pcItems) *pcItems = index + 1;