From f1097e88d22511f3ec96386ca165b75bb75aaa7a Mon Sep 17 00:00:00 2001 From: Alex Langford Date: Tue, 19 Sep 2023 10:55:46 -0700 Subject: [lldb] Fix build after d5a62b78b8ae I renamed something but forgot to update the uses of it. Minor thinko. --- .../source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp') diff --git a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp index 6280084..0d6ff66 100644 --- a/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp +++ b/lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp @@ -2442,7 +2442,7 @@ ConstString ScriptInterpreterPythonImpl::GetSyntheticTypeName( return {}; PythonString type_name(PyRefType::Borrowed, py_return.get()); - return ConstString(py_string.GetString()); + return ConstString(type_name.GetString()); } bool ScriptInterpreterPythonImpl::RunScriptFormatKeyword( -- cgit v1.1