forked from OSchip/llvm-project
[lldb] [Process/FreeBSD] Fix missing namespace qualifier
Fixes e4cc6e9bcd
This commit is contained in:
parent
8e7ea99c38
commit
4ba8ea4cb0
|
@ -826,7 +826,7 @@ bool ProcessMonitor::Launch(LaunchArgs *args) {
|
||||||
Environment::Envp envp =
|
Environment::Envp envp =
|
||||||
(args->m_env.empty() ? Host::GetEnvironment() : args->m_env).getEnvp();
|
(args->m_env.empty() ? Host::GetEnvironment() : args->m_env).getEnvp();
|
||||||
|
|
||||||
Expected<lldb::pid_t> pid = terminal.Fork();
|
llvm::Expected<lldb::pid_t> pid = terminal.Fork();
|
||||||
if (!pid) {
|
if (!pid) {
|
||||||
args->m_error = pid.takeError();
|
args->m_error = pid.takeError();
|
||||||
goto FINISH;
|
goto FINISH;
|
||||||
|
|
Loading…
Reference in New Issue