Fix a typo in the LLDB backend (#2411)

pull/2414/head
Matt. 1 year ago committed by GitHub
parent c2bf902ea7
commit 5d742d1517
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -250,7 +250,7 @@ def map_type_code(type: lldb.SBType) -> pwndbg.dbg_mod.TypeCode:
"""
Determines the type code of a given LLDB SBType.
"""
c = type.GetTypeCode()
c = type.GetTypeClass()
assert c != lldb.eTypeClassInvalid, "passed eTypeClassInvalid to map_type_code"

Loading…
Cancel
Save