From d808a08b91c8d003f5ecc6b0548245c57606d1fe Mon Sep 17 00:00:00 2001 From: Martin Fuchs Date: Thu, 22 Jan 2004 09:20:41 +0000 Subject: [PATCH] merged in commited shell32 WINE patch svn path=/trunk/; revision=7821 --- reactos/lib/shell32/pidl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/lib/shell32/pidl.c b/reactos/lib/shell32/pidl.c index 5c38c669ad5..57eac1ee0ff 100644 --- a/reactos/lib/shell32/pidl.c +++ b/reactos/lib/shell32/pidl.c @@ -1310,7 +1310,7 @@ HRESULT SHELL_GetPathFromIDListA(LPCITEMIDLIST pidl, LPSTR pszPath, UINT uOutSiz if (SUCCEEDED(hr)) pstr = PathAddBackslashA(pstr); } - /* The only other valid case is a item ID list beginning at "My Computer". */ + /* The only other valid case is a item ID list beginning at "My Computer" */ else if (_ILIsMyComputer(pidl)) pidl = ILGetNext(pidl); @@ -1343,7 +1343,7 @@ HRESULT SHELL_GetPathFromIDListA(LPCITEMIDLIST pidl, LPSTR pszPath, UINT uOutSiz } else hr = E_INVALIDARG; - TRACE_(shell)("-- %s, 0x%08lx\n", pszPath, S_OK); + TRACE_(shell)("-- %s, 0x%08lx\n", pszPath, hr); return hr; } @@ -1393,7 +1393,7 @@ HRESULT SHELL_GetPathFromIDListW(LPCITEMIDLIST pidl, LPWSTR pszPath, UINT uOutSi if (SUCCEEDED(hr)) pstr = PathAddBackslashW(pstr); } - /* The only other valid case is a item ID list beginning at "My Computer". */ + /* The only other valid case is a item ID list beginning at "My Computer" */ else if (_ILIsMyComputer(pidl)) pidl = ILGetNext(pidl);