summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
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: