| Index: base/process/launch_win.cc
|
| diff --git a/base/process/launch_win.cc b/base/process/launch_win.cc
|
| index fdaa5eb10e3195cda85880bd45b5889224e6bea1..48764658e33e9d12717a6ee0a44d2e3ffb861345 100644
|
| --- a/base/process/launch_win.cc
|
| +++ b/base/process/launch_win.cc
|
| @@ -149,7 +149,7 @@ bool LaunchProcess(const string16& cmdline,
|
| }
|
|
|
| if (options.empty_desktop_name)
|
| - startup_info->lpDesktop = L"";
|
| + startup_info->lpDesktop = const_cast<wchar_t*>(L"");
|
| startup_info->dwFlags = STARTF_USESHOWWINDOW;
|
| startup_info->wShowWindow = options.start_hidden ? SW_HIDE : SW_SHOW;
|
|
|
|
|