Module: wine Branch: master Commit: e9acfbee57d98307f4e685090ca9a06e3ab245d5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e9acfbee57d98307f4e685090c...
Author: James Hawkins jhawkins@codeweavers.com Date: Tue Jul 1 23:16:15 2008 -0500
fusion: pwzFilePath is an out parameter, so don't trace its contents.
---
dlls/fusion/fusion.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/fusion/fusion.c b/dlls/fusion/fusion.c index cabe68e..462c5d5 100644 --- a/dlls/fusion/fusion.c +++ b/dlls/fusion/fusion.c @@ -94,6 +94,6 @@ HRESULT WINAPI GetAssemblyIdentityFromFile(LPCWSTR pwzFilePath, REFIID riid, HRESULT WINAPI GetCachePath(ASM_CACHE_FLAGS dwCacheFlags, LPWSTR pwzCachePath, PDWORD pcchPath) { - FIXME("(%08x, %s, %p) stub!\n", dwCacheFlags, debugstr_w(pwzCachePath), pcchPath); + FIXME("(%08x, %p, %p) stub!\n", dwCacheFlags, pwzCachePath, pcchPath); return E_NOTIMPL; }