Module: wine Branch: master Commit: dca07aa856fee2d5f8eb81f23e469c1aaf4f1af8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=dca07aa856fee2d5f8eb81f23e...
Author: Vitaliy Margolen wine-patches@kievinfo.com Date: Mon May 26 23:53:36 2008 -0600
shell32: Don't print not initialized value.
---
dlls/shell32/classes.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/shell32/classes.c b/dlls/shell32/classes.c index e5fab4d..d6e9864 100644 --- a/dlls/shell32/classes.c +++ b/dlls/shell32/classes.c @@ -54,7 +54,7 @@ BOOL HCR_MapTypeToValueW(LPCWSTR szExtension, LPWSTR szFileType, LONG len, BOOL HKEY hkey; WCHAR szTemp[MAX_EXTENSION_LENGTH + 2];
- TRACE("%s %p\n", debugstr_w(szExtension), debugstr_w(szFileType)); + TRACE("%s %p\n", debugstr_w(szExtension), szFileType);
/* added because we do not want to have double dots */ if (szExtension[0] == '.')