[lldb] Fix typos in ScriptedInterface.h
diff --git a/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterface.h b/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterface.h
index 3ce47d0..3850edf 100644
--- a/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterface.h
+++ b/lldb/include/lldb/Interpreter/Interfaces/ScriptedInterface.h
@@ -36,8 +36,8 @@
template <typename Ret>
static Ret ErrorWithMessage(llvm::StringRef caller_name,
llvm::StringRef error_msg, Status &error,
- LLDBLog log_caterogy = LLDBLog::Process) {
- LLDB_LOGF(GetLog(log_caterogy), "%s ERROR = %s", caller_name.data(),
+ LLDBLog log_category = LLDBLog::Process) {
+ LLDB_LOGF(GetLog(log_category), "%s ERROR = %s", caller_name.data(),
error_msg.data());
std::string full_error_message =
llvm::Twine(caller_name + llvm::Twine(" ERROR = ") +