diff options
Diffstat (limited to 'lldb/source/Target/ProcessInfo.cpp')
-rw-r--r-- | lldb/source/Target/ProcessInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Target/ProcessInfo.cpp b/lldb/source/Target/ProcessInfo.cpp index 3b4fdf69618..ac035068670 100644 --- a/lldb/source/Target/ProcessInfo.cpp +++ b/lldb/source/Target/ProcessInfo.cpp @@ -97,7 +97,7 @@ void ProcessInfo::SetArguments(char const **argv, // the launch options. Don't resolve the file path as the path could be a // remote platform path const bool resolve = false; - m_executable.SetFile(first_arg, resolve); + m_executable.SetFile(first_arg, resolve, FileSpec::Style::native); } } } @@ -114,7 +114,7 @@ void ProcessInfo::SetArguments(const Args &args, bool first_arg_is_executable) { // the launch options. Don't resolve the file path as the path could be a // remote platform path const bool resolve = false; - m_executable.SetFile(first_arg, resolve); + m_executable.SetFile(first_arg, resolve, FileSpec::Style::native); } } } |