shell32: Fix a typo in TRACE format in SHPathPrepareForWriteW.

Signed-off-by: Andrey Gusev <andrey.goosev@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Andrey Gusev 2016-05-22 16:57:58 +03:00 committed by Alexandre Julliard
parent 4ec1ca5a0f
commit 7f64817e5e
1 changed files with 1 additions and 1 deletions

View File

@ -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);