From: Martin Fuchs Date: Wed, 24 Mar 2004 20:47:58 +0000 (+0000) Subject: FIXME -> TRACE X-Git-Tag: backups/scmhack-12042004@12458~225 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=f977f1fd59f711e7d413e514d34d5625421f1de6;ds=inline FIXME -> TRACE svn path=/trunk/; revision=8864 --- diff --git a/reactos/lib/shell32/shelllink.c b/reactos/lib/shell32/shelllink.c index 1b0b8219924..4cc02c2cf43 100644 --- a/reactos/lib/shell32/shelllink.c +++ b/reactos/lib/shell32/shelllink.c @@ -219,7 +219,7 @@ static HRESULT WINAPI IPersistFile_fnIsDirty(IPersistFile* iface) { _ICOM_THIS_From_IPersistFile(IShellLinkImpl, iface); - FIXME("(%p)\n",This); + TRACE("(%p)\n",This); if (This->bDirty) return S_OK; @@ -1356,7 +1356,7 @@ static HRESULT WINAPI IShellLinkA_fnSetPath(IShellLinkA * iface, LPCSTR pszFile) { ICOM_THIS(IShellLinkImpl, iface); char buffer[MAX_PATH]; - LPCSTR fname; + LPSTR fname; TRACE("(%p)->(path=%s)\n",This, pszFile); @@ -1791,7 +1791,7 @@ static HRESULT WINAPI IShellLinkW_fnSetPath(IShellLinkW * iface, LPCWSTR pszFile { _ICOM_THIS_From_IShellLinkW(IShellLinkImpl, iface); WCHAR buffer[MAX_PATH]; - LPCSTR fname; + LPWSTR fname; TRACE("(%p)->(path=%s)\n",This, debugstr_w(pszFile));