summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2018-02-20 22:30:54 -0500
committerJordan Wiens <jordan@psifertex.com>2018-02-20 22:30:54 -0500
commitb724a330ca0a722908459d5ae5f7e77c9df24fa6 (patch)
tree256a549da37d0a98ab0d2c202f8964a0cda56085 /python
parent211ec230ddfd86785729e05e47dabfcebee42174 (diff)
and the other modulus...
Diffstat (limited to 'python')
-rw-r--r--python/lowlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 0acb0312..1a9fc21e 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -1481,7 +1481,7 @@ class LowLevelILFunction(object):
:return: The expression ``modu.<size>{<flags>}(a, b)``
:rtype: LowLevelILExpr
"""
- return self.expr(LowLevelILOperation.LLIL_MODS, a.index, b.index, size=size, flags=flags)
+ return self.expr(LowLevelILOperation.LLIL_MODU, a.index, b.index, size=size, flags=flags)
def mod_double_prec_unsigned(self, size, a, b, flags=None):
"""