oleaut32: Correct TRACE statement.

oldstable
Andrew Eikum 2013-09-06 07:13:23 -05:00 committed by Alexandre Julliard
parent cb1f4c5387
commit 52b1adcd6e
1 changed files with 2 additions and 2 deletions

View File

@ -5080,8 +5080,8 @@ static HRESULT WINAPI ITypeLib2_fnIsName(
*pfName=FALSE;
ITypeLib2_fnIsName_exit:
TRACE("(%p)slow! search for %s: %s found!\n", This,
debugstr_w(szNameBuf), *pfName?"NOT":"");
TRACE("(%p)slow! search for %s: %sfound!\n", This,
debugstr_w(szNameBuf), *pfName ? "" : "NOT ");
return S_OK;
}