diff options
| author | Peter LaFosse <peter@vector35.com> | 2021-08-27 13:32:49 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2021-09-06 11:46:43 -0400 |
| commit | 24a82cb414a85bae23589f182e2315bc1c17a38c (patch) | |
| tree | 83ee9ea146186ef376b9ad2dccbb0de1d7376300 /python | |
| parent | 262b58c109bff869188638222bad44d07ff505f2 (diff) | |
Fix call to core.BNGetRealVariableName in variable.py
Diffstat (limited to 'python')
| -rw-r--r-- | python/variable.py | 2 |
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: |
