Commit c98ce23f authored by Alexandre Julliard's avatar Alexandre Julliard

ole32: Get rid of line feeds and tabs in traces.

parent 910455e4
...@@ -997,8 +997,7 @@ static HRESULT get_priv_data(ole_priv_data **data) ...@@ -997,8 +997,7 @@ static HRESULT get_priv_data(ole_priv_data **data)
{ {
char buf[100]; char buf[100];
GetClipboardFormatNameA(cf, buf, sizeof(buf)); GetClipboardFormatNameA(cf, buf, sizeof(buf));
TRACE("\tcf %04x %s\n", cf, buf); TRACE("cf %04x %s\n", cf, buf);
;
} }
TRACE("count %d\n", count); TRACE("count %d\n", count);
size += count * sizeof(ret->entries[0]); size += count * sizeof(ret->entries[0]);
......
...@@ -278,7 +278,7 @@ static HRESULT WINAPI COMCAT_ICatRegister_QueryInterface( ...@@ -278,7 +278,7 @@ static HRESULT WINAPI COMCAT_ICatRegister_QueryInterface(
LPVOID *ppvObj) LPVOID *ppvObj)
{ {
ComCatMgrImpl *This = (ComCatMgrImpl *)iface; ComCatMgrImpl *This = (ComCatMgrImpl *)iface;
TRACE("\n\tIID:\t%s\n",debugstr_guid(riid)); TRACE("%s\n",debugstr_guid(riid));
if (ppvObj == NULL) return E_POINTER; if (ppvObj == NULL) return E_POINTER;
...@@ -515,7 +515,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_GetCategoryDesc( ...@@ -515,7 +515,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_GetCategoryDesc(
HKEY key; HKEY key;
HRESULT res; HRESULT res;
TRACE("\n\tCATID:\t%s\n\tLCID:\t%X\n",debugstr_guid(rcatid), lcid); TRACE("CATID: %s LCID: %x\n",debugstr_guid(rcatid), lcid);
if (rcatid == NULL || ppszDesc == NULL) return E_INVALIDARG; if (rcatid == NULL || ppszDesc == NULL) return E_INVALIDARG;
...@@ -596,12 +596,12 @@ static HRESULT WINAPI COMCAT_ICatInformation_IsClassOfCategories( ...@@ -596,12 +596,12 @@ static HRESULT WINAPI COMCAT_ICatInformation_IsClassOfCategories(
if (WINE_TRACE_ON(ole)) { if (WINE_TRACE_ON(ole)) {
ULONG count; ULONG count;
TRACE("\n\tCLSID:\t%s\n\tImplemented %u\n",debugstr_guid(rclsid),cImplemented); TRACE("CLSID: %s Implemented %u\n",debugstr_guid(rclsid),cImplemented);
for (count = 0; count < cImplemented; ++count) for (count = 0; count < cImplemented; ++count)
TRACE("\t\t%s\n",debugstr_guid(&rgcatidImpl[count])); TRACE(" %s\n",debugstr_guid(&rgcatidImpl[count]));
TRACE("\tRequired %u\n",cRequired); TRACE("Required %u\n",cRequired);
for (count = 0; count < cRequired; ++count) for (count = 0; count < cRequired; ++count)
TRACE("\t\t%s\n",debugstr_guid(&rgcatidReq[count])); TRACE(" %s\n",debugstr_guid(&rgcatidReq[count]));
} }
if ((cImplemented && rgcatidImpl == NULL) || if ((cImplemented && rgcatidImpl == NULL) ||
...@@ -637,7 +637,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_EnumImplCategoriesOfClass( ...@@ -637,7 +637,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_EnumImplCategoriesOfClass(
'n', 't', 'e', 'd', ' ', 'C', 'a', 't', 'n', 't', 'e', 'd', ' ', 'C', 'a', 't',
'e', 'g', 'o', 'r', 'i', 'e', 's', 0 }; 'e', 'g', 'o', 'r', 'i', 'e', 's', 0 };
TRACE("\n\tCLSID:\t%s\n",debugstr_guid(rclsid)); TRACE("%s\n",debugstr_guid(rclsid));
if (rclsid == NULL || ppenumCATID == NULL) if (rclsid == NULL || ppenumCATID == NULL)
return E_POINTER; return E_POINTER;
...@@ -659,7 +659,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_EnumReqCategoriesOfClass( ...@@ -659,7 +659,7 @@ static HRESULT WINAPI COMCAT_ICatInformation_EnumReqCategoriesOfClass(
'd', ' ', 'C', 'a', 't', 'e', 'g', 'o', 'd', ' ', 'C', 'a', 't', 'e', 'g', 'o',
'r', 'i', 'e', 's', 0 }; 'r', 'i', 'e', 's', 0 };
TRACE("\n\tCLSID:\t%s\n",debugstr_guid(rclsid)); TRACE("%s\n",debugstr_guid(rclsid));
if (rclsid == NULL || ppenumCATID == NULL) if (rclsid == NULL || ppenumCATID == NULL)
return E_POINTER; return E_POINTER;
...@@ -719,7 +719,7 @@ static HRESULT WINAPI COMCAT_IClassFactory_QueryInterface( ...@@ -719,7 +719,7 @@ static HRESULT WINAPI COMCAT_IClassFactory_QueryInterface(
REFIID riid, REFIID riid,
LPVOID *ppvObj) LPVOID *ppvObj)
{ {
TRACE("\n\tIID:\t%s\n",debugstr_guid(riid)); TRACE("%s\n",debugstr_guid(riid));
if (ppvObj == NULL) return E_POINTER; if (ppvObj == NULL) return E_POINTER;
...@@ -760,7 +760,7 @@ static HRESULT WINAPI COMCAT_IClassFactory_CreateInstance( ...@@ -760,7 +760,7 @@ static HRESULT WINAPI COMCAT_IClassFactory_CreateInstance(
LPVOID *ppvObj) LPVOID *ppvObj)
{ {
HRESULT res; HRESULT res;
TRACE("\n\tIID:\t%s\n",debugstr_guid(riid)); TRACE("%s\n",debugstr_guid(riid));
if (ppvObj == NULL) return E_POINTER; if (ppvObj == NULL) return E_POINTER;
...@@ -834,7 +834,7 @@ static HRESULT WINAPI COMCAT_IEnumCATEGORYINFO_QueryInterface( ...@@ -834,7 +834,7 @@ static HRESULT WINAPI COMCAT_IEnumCATEGORYINFO_QueryInterface(
REFIID riid, REFIID riid,
LPVOID *ppvObj) LPVOID *ppvObj)
{ {
TRACE("\n\tIID:\t%s\n",debugstr_guid(riid)); TRACE("%s\n",debugstr_guid(riid));
if (ppvObj == NULL) return E_POINTER; if (ppvObj == NULL) return E_POINTER;
...@@ -1017,7 +1017,7 @@ static HRESULT WINAPI COMCAT_CLSID_IEnumGUID_QueryInterface( ...@@ -1017,7 +1017,7 @@ static HRESULT WINAPI COMCAT_CLSID_IEnumGUID_QueryInterface(
REFIID riid, REFIID riid,
LPVOID *ppvObj) LPVOID *ppvObj)
{ {
TRACE("\n\tIID:\t%s\n",debugstr_guid(riid)); TRACE("%s\n",debugstr_guid(riid));
if (ppvObj == NULL) return E_POINTER; if (ppvObj == NULL) return E_POINTER;
...@@ -1203,7 +1203,7 @@ static HRESULT WINAPI COMCAT_CATID_IEnumGUID_QueryInterface( ...@@ -1203,7 +1203,7 @@ static HRESULT WINAPI COMCAT_CATID_IEnumGUID_QueryInterface(
REFIID riid, REFIID riid,
LPVOID *ppvObj) LPVOID *ppvObj)
{ {
TRACE("\n\tIID:\t%s\n",debugstr_guid(riid)); TRACE("%s\n",debugstr_guid(riid));
if (ppvObj == NULL) return E_POINTER; if (ppvObj == NULL) return E_POINTER;
......
...@@ -2265,7 +2265,7 @@ HRESULT WINAPI CoGetClassObject( ...@@ -2265,7 +2265,7 @@ HRESULT WINAPI CoGetClassObject(
APARTMENT *apt; APARTMENT *apt;
BOOL release_apt = FALSE; BOOL release_apt = FALSE;
TRACE("\n\tCLSID:\t%s,\n\tIID:\t%s\n", debugstr_guid(rclsid), debugstr_guid(iid)); TRACE("CLSID: %s,IID: %s\n", debugstr_guid(rclsid), debugstr_guid(iid));
if (!ppv) if (!ppv)
return E_INVALIDARG; return E_INVALIDARG;
...@@ -2283,8 +2283,8 @@ HRESULT WINAPI CoGetClassObject( ...@@ -2283,8 +2283,8 @@ HRESULT WINAPI CoGetClassObject(
} }
if (pServerInfo) { if (pServerInfo) {
FIXME("\tpServerInfo: name=%s\n",debugstr_w(pServerInfo->pwszName)); FIXME("pServerInfo->name=%s pAuthInfo=%p\n",
FIXME("\t\tpAuthInfo=%p\n",pServerInfo->pAuthInfo); debugstr_w(pServerInfo->pwszName), pServerInfo->pAuthInfo);
} }
/* /*
......
...@@ -191,7 +191,7 @@ static HRESULT WINAPI IErrorInfoImpl_QueryInterface( ...@@ -191,7 +191,7 @@ static HRESULT WINAPI IErrorInfoImpl_QueryInterface(
VOID** ppvoid) VOID** ppvoid)
{ {
ErrorInfoImpl *This = impl_from_IErrorInfo(iface); ErrorInfoImpl *This = impl_from_IErrorInfo(iface);
TRACE("(%p)->(\n\tIID:\t%s,%p)\n",This,debugstr_guid(riid),ppvoid); TRACE("(%p)->(%s,%p)\n",This,debugstr_guid(riid),ppvoid);
*ppvoid = NULL; *ppvoid = NULL;
......
...@@ -110,7 +110,7 @@ FTMarshalImpl_QueryInterface (LPMARSHAL iface, REFIID riid, LPVOID * ppv) ...@@ -110,7 +110,7 @@ FTMarshalImpl_QueryInterface (LPMARSHAL iface, REFIID riid, LPVOID * ppv)
FTMarshalImpl *This = impl_from_IMarshal(iface); FTMarshalImpl *This = impl_from_IMarshal(iface);
TRACE ("(%p)->(\n\tIID:\t%s,%p)\n", This, debugstr_guid (riid), ppv); TRACE ("(%p)->(%s,%p)\n", This, debugstr_guid (riid), ppv);
return IUnknown_QueryInterface (This->pUnkOuter, riid, ppv); return IUnknown_QueryInterface (This->pUnkOuter, riid, ppv);
} }
......
...@@ -431,7 +431,7 @@ static HRESULT WINAPI Proxy_MarshalInterface( ...@@ -431,7 +431,7 @@ static HRESULT WINAPI Proxy_MarshalInterface(
if (SUCCEEDED(hr)) if (SUCCEEDED(hr))
{ {
TRACE("writing stdobjref:\n\tflags = %04x\n\tcPublicRefs = %d\n\toxid = %s\n\toid = %s\n\tipid = %s\n", TRACE("writing stdobjref: flags = %04x cPublicRefs = %d oxid = %s oid = %s ipid = %s\n",
stdobjref.flags, stdobjref.cPublicRefs, stdobjref.flags, stdobjref.cPublicRefs,
wine_dbgstr_longlong(stdobjref.oxid), wine_dbgstr_longlong(stdobjref.oxid),
wine_dbgstr_longlong(stdobjref.oid), wine_dbgstr_longlong(stdobjref.oid),
...@@ -1239,7 +1239,7 @@ static HRESULT unmarshal_object(const STDOBJREF *stdobjref, APARTMENT *apt, ...@@ -1239,7 +1239,7 @@ static HRESULT unmarshal_object(const STDOBJREF *stdobjref, APARTMENT *apt,
assert(apt); assert(apt);
TRACE("stdobjref:\n\tflags = %04x\n\tcPublicRefs = %d\n\toxid = %s\n\toid = %s\n\tipid = %s\n", TRACE("stdobjref: flags = %04x cPublicRefs = %d oxid = %s oid = %s ipid = %s\n",
stdobjref->flags, stdobjref->cPublicRefs, stdobjref->flags, stdobjref->cPublicRefs,
wine_dbgstr_longlong(stdobjref->oxid), wine_dbgstr_longlong(stdobjref->oxid),
wine_dbgstr_longlong(stdobjref->oid), wine_dbgstr_longlong(stdobjref->oid),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment