diff options
Diffstat (limited to 'python/highlevelil.py')
| -rw-r--r-- | python/highlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py index b4bd9f42..fc9477cd 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -1407,7 +1407,7 @@ class HighLevelILConst(HighLevelILInstruction, Constant): class HighLevelILConstData(HighLevelILInstruction, Constant): @property def constant(self) -> 'databuffer.DataBuffer': - return self.function.source_function.view.get_constant_data(self._get_int(0)) + return self.function.source_function.view.get_constant_data(self.get_int(0)) @property def operands(self) -> List[HighLevelILOperandType]: |
