summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2021-08-27 13:32:49 -0400
committerPeter LaFosse <peter@vector35.com>2021-09-06 11:46:43 -0400
commit24a82cb414a85bae23589f182e2315bc1c17a38c (patch)
tree83ee9ea146186ef376b9ad2dccbb0de1d7376300 /python
parent262b58c109bff869188638222bad44d07ff505f2 (diff)
Fix call to core.BNGetRealVariableName in variable.py
Diffstat (limited to 'python')
-rw-r--r--python/variable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/variable.py b/python/variable.py
index 1bad40b1..6bf1d4ed 100644
--- a/python/variable.py
+++ b/python/variable.py
@@ -715,7 +715,7 @@ class Variable:
@property
def name(self):
"""Name of the variable"""
- return core.BNGetRealVariableName(self._function.arch.handle, self._function.handle, self._var.to_BNVariable())
+ return core.BNGetRealVariableName(self._function.handle, self._function.arch.handle, self._var.to_BNVariable())
@name.setter
def name(self, name:Optional[str]) -> None: