Alexandre Julliard : shell32: Remove unnecessary linefeeds in traces.
Module: wine Branch: master Commit: 6562b25b9659b79a07c24dab800629428c42682e URL: http://source.winehq.org/git/wine.git/?a=commit;h=6562b25b9659b79a07c24dab80... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Thu May 21 17:17:26 2009 +0200 shell32: Remove unnecessary linefeeds in traces. --- dlls/shell32/autocomplete.c | 2 +- dlls/shell32/debughlp.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/shell32/autocomplete.c b/dlls/shell32/autocomplete.c index cd087d2..949a439 100644 --- a/dlls/shell32/autocomplete.c +++ b/dlls/shell32/autocomplete.c @@ -160,7 +160,7 @@ static HRESULT WINAPI IAutoComplete2_fnQueryInterface( { IAutoCompleteImpl *This = (IAutoCompleteImpl *)iface; - TRACE("(%p)->(\n\tIID:\t%s,%p)\n", This, shdebugstr_guid(riid), ppvObj); + TRACE("(%p)->(IID:%s,%p)\n", This, shdebugstr_guid(riid), ppvObj); *ppvObj = NULL; if (IsEqualIID(riid, &IID_IUnknown) || diff --git a/dlls/shell32/debughlp.c b/dlls/shell32/debughlp.c index 903ddcf..98d7899 100644 --- a/dlls/shell32/debughlp.c +++ b/dlls/shell32/debughlp.c @@ -430,7 +430,7 @@ const char * shdebugstr_guid( const struct _GUID *id ) name = clsidbuf; } - return wine_dbg_sprintf( "\n\t{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x} (%s)", + return wine_dbg_sprintf( "{%08x-%04x-%04x-%02x%02x-%02x%02x%02x%02x%02x%02x} (%s)", id->Data1, id->Data2, id->Data3, id->Data4[0], id->Data4[1], id->Data4[2], id->Data4[3], id->Data4[4], id->Data4[5], id->Data4[6], id->Data4[7], name ? name : "unknown" );
participants (1)
-
Alexandre Julliard