diff options
| author | Rusty Wagner <rusty@vector35.com> | 2020-06-08 23:11:12 -0400 |
|---|---|---|
| committer | Rusty Wagner <rusty@vector35.com> | 2020-06-09 18:59:43 -0400 |
| commit | 7b2700b2748b9513811ab6521c9b57e23175c1e2 (patch) | |
| tree | 3d21461fb775caf07a7bb79a92057bf8f222b827 /lowlevelil.cpp | |
| parent | ecc69a0da9a7f37e9e126beb17c20e537be92e22 (diff) | |
Fix warnings
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; } |
