diff --git a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp index f7f52deb173fb12c6ab089940ac4ab8db86df12c..abee8dbebe759e8de254c5ab37368c24b72d0b84 100644 --- a/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp +++ b/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp @@ -248,7 +248,7 @@ NativeProcessLinux::Factory::Launch(ProcessLaunchInfo &launch_info, ProcessInstanceInfo Info; if (!Host::GetProcessInfo(pid, Info)) { - return llvm::make_error("Cannot get process architecture", + return llvm::make_error("Cannot get information of the process", llvm::inconvertibleErrorCode()); } @@ -277,7 +277,7 @@ NativeProcessLinux::Factory::Attach( // Retrieve the architecture for the running process. ProcessInstanceInfo Info; if (!Host::GetProcessInfo(pid, Info)) { - return llvm::make_error("Cannot get process architecture", + return llvm::make_error("Cannot get information of the process", llvm::inconvertibleErrorCode()); }