[Lldb-commits] [lldb] 20db891 - Fix typo in error message
via lldb-commits
lldb-commits at lists.llvm.org
Wed May 13 22:24:25 PDT 2020
Author: Gabor Greif
Date: 2020-05-14T07:23:59+02:00
New Revision: 20db891cef97df752ff8d2a249c155e5605ba06d
URL: https://github.com/llvm/llvm-project/commit/20db891cef97df752ff8d2a249c155e5605ba06d
DIFF: https://github.com/llvm/llvm-project/commit/20db891cef97df752ff8d2a249c155e5605ba06d.diff
LOG: Fix typo in error message
Added:
Modified:
lldb/source/Commands/CommandObjectGUI.cpp
Removed:
################################################################################
diff --git a/lldb/source/Commands/CommandObjectGUI.cpp b/lldb/source/Commands/CommandObjectGUI.cpp
index 31b68881b52f..3f45a26de228 100644
--- a/lldb/source/Commands/CommandObjectGUI.cpp
+++ b/lldb/source/Commands/CommandObjectGUI.cpp
@@ -47,7 +47,7 @@ bool CommandObjectGUI::DoExecute(Args &args, CommandReturnObject &result) {
}
return true;
#else
- result.AppendError("lldb was not build with gui support");
+ result.AppendError("lldb was not built with gui support");
return false;
#endif
}
More information about the lldb-commits
mailing list