From 24a82cb414a85bae23589f182e2315bc1c17a38c Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 27 Aug 2021 13:32:49 -0400 Subject: Fix call to core.BNGetRealVariableName in variable.py --- python/variable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') 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: -- cgit v1.3.1