summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2018-02-20 22:28:24 -0500
committerJordan Wiens <jordan@psifertex.com>2018-02-20 22:28:24 -0500
commit211ec230ddfd86785729e05e47dabfcebee42174 (patch)
treea6fb2ad2ecb29aa239f3be0c70aad38ba832e18d /python/lowlevelil.py
parente0fae5db1c0d7c8989d4d95459fb051ae433b68c (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):
"""