diff options
Diffstat (limited to 'lowlevelil.cpp')
| -rw-r--r-- | lowlevelil.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lowlevelil.cpp b/lowlevelil.cpp index 10f72541..13b465f9 100644 --- a/lowlevelil.cpp +++ b/lowlevelil.cpp @@ -346,9 +346,9 @@ ExprId LowLevelILFunction::GetExprForRegisterOrConstantOperation(BNLowLevelILOpe } -ExprId LowLevelILFunction::Operand(uint32_t n, ExprId expr) +ExprId LowLevelILFunction::Operand(size_t n, ExprId expr) { - BNLowLevelILSetExprSourceOperand(m_object, expr, n); + BNLowLevelILSetExprSourceOperand(m_object, expr, (uint32_t)n); return expr; } |
