From fae2edb91e1c3c48465ea2ed8bc7d80250baf51c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Wed, 17 Dec 2008 10:26:40 +0100 Subject: [PATCH] dmloader: Add a trailing '\n' to a Wine trace. --- dlls/dmloader/loader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dmloader/loader.c b/dlls/dmloader/loader.c index f97a2308e29..059760a18f0 100644 --- a/dlls/dmloader/loader.c +++ b/dlls/dmloader/loader.c @@ -26,7 +26,7 @@ static HRESULT DMUSIC_GetLoaderSettings (LPDIRECTMUSICLOADER8 iface, REFGUID pCl static HRESULT DMUSIC_SetLoaderSettings (LPDIRECTMUSICLOADER8 iface, REFGUID pClassID, WCHAR* wszSearchPath, LPBOOL pbCache); static HRESULT DMUSIC_CopyDescriptor (LPDMUS_OBJECTDESC pDst, LPDMUS_OBJECTDESC pSrc) { - TRACE(": copy \n%s", debugstr_DMUS_OBJECTDESC(pSrc)); + TRACE(": copy \n%s\n", debugstr_DMUS_OBJECTDESC(pSrc)); /* copy field by field */ if (pSrc->dwValidData & DMUS_OBJ_CLASS) pDst->guidClass = pSrc->guidClass; if (pSrc->dwValidData & DMUS_OBJ_OBJECT) pDst->guidObject = pSrc->guidObject;