msi: Remove superfluous cast of a MSIHANDLE in a TRACE().

This commit is contained in:
Michael Stefaniuc 2009-04-17 10:34:47 +02:00 committed by Alexandre Julliard
parent 0847e7d826
commit f3a1660181
1 changed files with 1 additions and 1 deletions

View File

@ -162,7 +162,7 @@ static HRESULT create_automation_object(MSIHANDLE msiHandle, IUnknown *pUnkOuter
AutomationObject *object;
HRESULT hr;
TRACE("(%ld,%p,%p,%s,%p,%p,%ld)\n", (unsigned long)msiHandle, pUnkOuter, ppObj, debugstr_guid(clsid), funcInvoke, funcFree, sizetPrivateData);
TRACE("(%d,%p,%p,%s,%p,%p,%ld)\n", msiHandle, pUnkOuter, ppObj, debugstr_guid(clsid), funcInvoke, funcFree, sizetPrivateData);
if( pUnkOuter )
return CLASS_E_NOAGGREGATION;