diff options
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 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): """ |
