summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-rw-r--r--Source/MFCDialog/CMakeSetupDialog.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/MFCDialog/CMakeSetupDialog.cpp b/Source/MFCDialog/CMakeSetupDialog.cpp
index fc2a6dd..594d060 100644
--- a/Source/MFCDialog/CMakeSetupDialog.cpp
+++ b/Source/MFCDialog/CMakeSetupDialog.cpp
@@ -1269,8 +1269,9 @@ int CMakeSetupDialog::CreateShortcut()
}
// Ensure that the string consists of ANSI characters.
- WORD wsz[MAX_PATH];
- MultiByteToWideChar(CP_ACP, 0, link_name, -1, wsz, MAX_PATH);
+ WORD wszAr[MAX_PATH];
+ LPWSTR wsz = (LPWSTR)wszAr;
+ MultiByteToWideChar(CP_ACP, 0, link_name, -1, (LPWSTR)(wsz), MAX_PATH);
// Save the shortcut via the IPersistFile::Save member function.
hres = ppf->Save(wsz, TRUE);