diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2018-02-20 22:28:24 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2018-03-23 17:10:06 -0400 |
| commit | 586151bf69b81dd2bd84674b1b4dc5fda64965bc (patch) | |
| tree | a6fb2ad2ecb29aa239f3be0c70aad38ba832e18d /python | |
| parent | 88f7f557de3cffc16f2866b81495bd6d9f57bc4f (diff) | |
one more signed/unsigned copy paste failure
Diffstat (limited to 'python')
| -rw-r--r-- | python/lowlevelil.py | 2 |
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): """ |
