summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2018-02-20 22:28:24 -0500
committerPeter LaFosse <peter@vector35.com>2018-03-23 17:10:06 -0400
commit586151bf69b81dd2bd84674b1b4dc5fda64965bc (patch)
treea6fb2ad2ecb29aa239f3be0c70aad38ba832e18d /python/lowlevelil.py
parent88f7f557de3cffc16f2866b81495bd6d9f57bc4f (diff)
one more signed/unsigned copy paste failure
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 0eb463d1..0acb0312 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -1496,7 +1496,7 @@ class LowLevelILFunction(object):
:return: The expression ``modu.dp.<size>{<flags>}(a, b)``
:rtype: LowLevelILExpr
"""
- return self.expr(LowLevelILOperation.LLIL_MODS_DP, a.index, b.index, size=size, flags=flags)
+ return self.expr(LowLevelILOperation.LLIL_MODU_DP, a.index, b.index, size=size, flags=flags)
def neg_expr(self, size, value, flags=None):
"""