merged back commited WINE patches: \n for TRACE messages
authorMartin Fuchs <fuchs.martin@gmail.com>
Wed, 28 Jan 2004 20:10:59 +0000 (20:10 +0000)
committerMartin Fuchs <fuchs.martin@gmail.com>
Wed, 28 Jan 2004 20:10:59 +0000 (20:10 +0000)
svn path=/trunk/; revision=7897

reactos/lib/shell32/shlfileop.c
reactos/lib/shell32/shlfsbind.c

index 8639fa1..3ee8823 100644 (file)
@@ -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;
index 3619beb..73344ae 100644 (file)
@@ -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))