summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2018-02-20 22:30:54 -0500
committerPeter LaFosse <peter@vector35.com>2018-03-23 17:10:06 -0400
commit0b73636e905ddb50c6cf669d5f1bdfa30f8d531d (patch)
tree256a549da37d0a98ab0d2c202f8964a0cda56085 /python
parent586151bf69b81dd2bd84674b1b4dc5fda64965bc (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):
"""