Skip to content

Commit

Permalink
Revert "[lldb][swig] Use the correct variable in the return statement"
Browse files Browse the repository at this point in the history
This reverts commit 6528157.

I'm reverting llvm#104523
(llvm@f01f80c)
and this fixup belongs to the same series of changes.
  • Loading branch information
gribozavr authored and cjdb committed Aug 23, 2024
1 parent a9fdefd commit 511de69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/bindings/python/python-wrapper.swig
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ bool lldb_private::python::SWIGBridge::LLDBSwigPython_ShouldHide(
bool ret_val = result ? PyObject_IsTrue(result) : false;
Py_XDECREF(result);

return ret_val;
return result;
}

void *lldb_private::python::SWIGBridge::LLDBSWIGPython_GetDynamicSetting(
Expand Down

0 comments on commit 511de69

Please sign in to comment.