Andrey Gusev : shell32: Fix a typo in TRACE format in SHPathPrepareForWriteW.
Module: wine Branch: master Commit: 7f64817e5ed3a982bc57ddb603e96de8ab327715 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7f64817e5ed3a982bc57ddb603... Author: Andrey Gusev <andrey.goosev(a)gmail.com> Date: Sun May 22 16:57:58 2016 +0300 shell32: Fix a typo in TRACE format in SHPathPrepareForWriteW. Signed-off-by: Andrey Gusev <andrey.goosev(a)gmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/shell32/shlfileop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/shell32/shlfileop.c b/dlls/shell32/shlfileop.c index 6f20181..3c18066 100644 --- a/dlls/shell32/shlfileop.c +++ b/dlls/shell32/shlfileop.c @@ -1744,7 +1744,7 @@ HRESULT WINAPI SHPathPrepareForWriteW(HWND hwnd, IUnknown *modless, LPCWSTR path WCHAR* last_slash; WCHAR* temppath=NULL; - TRACE("%p %p %s 0x%80x\n", hwnd, modless, debugstr_w(path), flags); + TRACE("%p %p %s 0x%08x\n", hwnd, modless, debugstr_w(path), flags); if (flags & ~(SHPPFW_DIRCREATE|SHPPFW_ASKDIRCREATE|SHPPFW_IGNOREFILENAME)) FIXME("unimplemented flags 0x%08x\n", flags);
participants (1)
-
Alexandre Julliard