Skip to content

Commit

Permalink
fix(avm): mac build (retry)
Browse files Browse the repository at this point in the history
  • Loading branch information
fcarreiro committed Jan 13, 2025
1 parent 9ab4cee commit a3d2394
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ void Execution::ret(ContextInterface& context, MemoryAddress ret_offset, MemoryA
auto& memory = context.get_memory();

// TODO: check tags and types (only for size, the return data is converted to FF).
size_t size = static_cast<size_t>(memory.get(ret_size_offset).value);
uint32_t size = static_cast<uint32_t>(memory.get(ret_size_offset).value);
auto [values, _] = memory.get_slice(ret_offset, size);

context_stack.pop();
Expand Down

0 comments on commit a3d2394

Please sign in to comment.