From b4446c11bb57713e097fad1b4588c2efbc689e73 Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Wed, 28 Jan 2004 20:10:59 +0000 Subject: [PATCH] merged back commited WINE patches: \n for TRACE messages svn path=/trunk/; revision=7897 --- reactos/lib/shell32/shlfileop.c | 6 +++--- reactos/lib/shell32/shlfsbind.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/reactos/lib/shell32/shlfileop.c b/reactos/lib/shell32/shlfileop.c index 8639fa1b687..3ee8823d20e 100644 --- a/reactos/lib/shell32/shlfileop.c +++ b/reactos/lib/shell32/shlfileop.c @@ -445,7 +445,7 @@ static DWORD SHNotifyMoveFileW(LPCWSTR src, LPCWSTR dest, BOOL bRename) dwAttr = GetFileAttributesW(dest); if (dwAttr != -1) { - FIXME("Rename on move to existing file not implemented!"); + FIXME("Rename on move to existing file not implemented!\n"); } } } @@ -484,7 +484,7 @@ static DWORD SHNotifyCopyFileW(LPCWSTR src, LPCWSTR dest, BOOL bRename) DWORD dwAttr = GetFileAttributesW(dest); if (dwAttr != -1) { - FIXME("Rename on copy to existing file not implemented!"); + FIXME("Rename on copy to existing file not implemented!\n"); } } if (ret) @@ -572,7 +572,7 @@ DWORD WINAPI SHCreateDirectoryExW(HWND hWnd, LPCWSTR path, LPSECURITY_ATTRIBUTES /* handling network file names? lstrcpynW(pathName, path, MAX_PATH); lpStr = PathAddBackslashW(pathName);*/ - FIXME("Semi-stub, non zero hWnd should be used somehow?"); + FIXME("Semi-stub, non zero hWnd should be used somehow?\n"); } } return ret; diff --git a/reactos/lib/shell32/shlfsbind.c b/reactos/lib/shell32/shlfsbind.c index 3619beb0b41..73344ae1ebf 100644 --- a/reactos/lib/shell32/shlfsbind.c +++ b/reactos/lib/shell32/shlfsbind.c @@ -69,7 +69,7 @@ HRESULT WINAPI IFileSystemBindData_Constructor(const WIN32_FIND_DATAW *pfd, LPBC IFileSystemBindDataImpl *sb; HRESULT ret = E_OUTOFMEMORY; - TRACE("%p, %p", pfd, ppV); + TRACE("%p, %p\n", pfd, ppV); if (!ppV) return E_INVALIDARG; @@ -108,7 +108,7 @@ HRESULT WINAPI FileSystemBindData_GetFindData(LPBC pbc, WIN32_FIND_DATAW *pfd) IFileSystemBindData *pfsbd = NULL; HRESULT ret; - TRACE("%p, %p", pbc, pfd); + TRACE("%p, %p\n", pbc, pfd); if (!pfd) return E_INVALIDARG; @@ -133,7 +133,7 @@ HRESULT WINAPI FileSystemBindData_SetFindData(LPBC pbc, const WIN32_FIND_DATAW * IFileSystemBindData *pfsbd = NULL; HRESULT ret; - TRACE("%p, %p", pbc, pfd); + TRACE("%p, %p\n", pbc, pfd); ret = IBindCtx_GetObjectParam(pbc, wFileSystemBindData, &pUnk); if (SUCCEEDED(ret))