From 7b2700b2748b9513811ab6521c9b57e23175c1e2 Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 8 Jun 2020 23:11:12 -0400 Subject: Fix warnings --- lowlevelil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lowlevelil.cpp') 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; } -- cgit v1.3.1