From 7f64817e5ed3a982bc57ddb603e96de8ab327715 Mon Sep 17 00:00:00 2001 From: Andrey Gusev Date: Sun, 22 May 2016 16:57:58 +0300 Subject: [PATCH] shell32: Fix a typo in TRACE format in SHPathPrepareForWriteW. Signed-off-by: Andrey Gusev Signed-off-by: Alexandre Julliard --- 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 6f2018116c7..3c1806606af 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);