diff options
author | Alex Langford <alangford@apple.com> | 2023-09-19 10:55:46 -0700 |
---|---|---|
committer | Alex Langford <alangford@apple.com> | 2023-09-19 10:56:13 -0700 |
commit | f1097e88d22511f3ec96386ca165b75bb75aaa7a (patch) | |
tree | aa39e37a26affc74436302e3a4a6d0cadc8717a0 /lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | |
parent | 6bab4008350ae571b3bfb16d73c6773a6fc9bf1e (diff) | |
download | llvm-f1097e88d22511f3ec96386ca165b75bb75aaa7a.zip llvm-f1097e88d22511f3ec96386ca165b75bb75aaa7a.tar.gz llvm-f1097e88d22511f3ec96386ca165b75bb75aaa7a.tar.bz2 |
[lldb] Fix build after d5a62b78b8ae
I renamed something but forgot to update the uses of it. Minor thinko.
Diffstat (limited to 'lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp')
-rw-r--r-- | lldb/source/Plugins/ScriptInterpreter/Python/ScriptInterpreterPython.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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( |