Kaydet (Commit) 210f57d0 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wwritable-strings (clang-cl)

Change-Id: Ic3a23c8290021b4bffe770651269ccf792b7c632
üst bc8a4653
...@@ -191,7 +191,7 @@ WinLaunchChild(const wchar_t *exePath, ...@@ -191,7 +191,7 @@ WinLaunchChild(const wchar_t *exePath,
STARTUPINFOW si = {0}; STARTUPINFOW si = {0};
si.cb = sizeof(STARTUPINFOW); si.cb = sizeof(STARTUPINFOW);
si.lpDesktop = L"winsta0\\Default"; si.lpDesktop = const_cast<LPWSTR>(L"winsta0\\Default");
PROCESS_INFORMATION pi = {0}; PROCESS_INFORMATION pi = {0};
if (userToken == nullptr) if (userToken == nullptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment