diff options
Diffstat (limited to 'contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp')
-rw-r--r-- | contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp b/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp index 98a212eef0fa..881415a49472 100644 --- a/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp +++ b/contrib/llvm-project/lldb/source/Commands/CommandObjectPlugin.cpp @@ -50,7 +50,6 @@ protected: if (argc != 1) { result.AppendError("'plugin load' requires one argument"); - result.SetStatus(eReturnStatusFailed); return false; } @@ -63,7 +62,6 @@ protected: result.SetStatus(eReturnStatusSuccessFinishResult); else { result.AppendError(error.AsCString()); - result.SetStatus(eReturnStatusFailed); } return result.Succeeded(); |