CreateErrorInfo trace fix.

CreateErrorInfo isn't a stub so don't print this in the trace
message.
This commit is contained in:
Robert Shearman 2005-12-12 11:52:36 +01:00 committed by Alexandre Julliard
parent 69aa9f9d2e
commit 6c3e1f9adf
1 changed files with 1 additions and 1 deletions

View File

@ -476,7 +476,7 @@ HRESULT WINAPI CreateErrorInfo(ICreateErrorInfo **pperrinfo)
{
IErrorInfo * pei;
HRESULT res;
TRACE("(%p): stub:\n", pperrinfo);
TRACE("(%p)\n", pperrinfo);
if(! pperrinfo ) return E_INVALIDARG;
if(!(pei=IErrorInfoImpl_Constructor()))return E_OUTOFMEMORY;