Module: wine Branch: master Commit: 52b1adcd6ecfe077207209acd585a0db754db3ee URL: http://source.winehq.org/git/wine.git/?a=commit;h=52b1adcd6ecfe077207209acd5... Author: Andrew Eikum <aeikum(a)codeweavers.com> Date: Fri Sep 6 07:13:23 2013 -0500 oleaut32: Correct TRACE statement. --- dlls/oleaut32/typelib.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/oleaut32/typelib.c b/dlls/oleaut32/typelib.c index 72d53a0..18c1e19 100644 --- a/dlls/oleaut32/typelib.c +++ b/dlls/oleaut32/typelib.c @@ -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; }