summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-08-23 07:37:32 -0400
committerJordan Wiens <jordan@psifertex.com>2019-08-23 07:37:32 -0400
commitbb3592d017114015e4d37457b9581c542340d25a (patch)
tree258523c1a64e3c740dba80a925a93e06f71f69b1 /python
parent9274adf85554aaedd12d8fb2f9f847555c2c52e3 (diff)
fix typo in registerstackinfo repr
Diffstat (limited to 'python')
-rw-r--r--python/function.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/function.py b/python/function.py
index 0bac5e23..6330f656 100644
--- a/python/function.py
+++ b/python/function.py
@@ -2531,7 +2531,7 @@ class RegisterStackInfo(object):
self._index = index
def __repr__(self):
- return "<reg stack: %d regs, stack top in %s>" % (len(self._jstorage_regs), self._stack_top_reg)
+ return "<reg stack: %d regs, stack top in %s>" % (len(self._storage_regs), self._stack_top_reg)
@property
def storage_regs(self):