mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-18 16:06:30 +08:00
firmware/rpc_proto: Remove unnecessary cast [nfc]
This commit is contained in:
parent
60a2ff3799
commit
3e7680e45b
@ -147,7 +147,7 @@ unsafe fn recv_value<R, E>(reader: &mut R, tag: Tag, data: &mut *mut (),
|
|||||||
let storage_offset = round_up(list_size, tag.alignment());
|
let storage_offset = round_up(list_size, tag.alignment());
|
||||||
let storage_size = tag.size() * length;
|
let storage_size = tag.size() * length;
|
||||||
|
|
||||||
let allocation = alloc(storage_offset as usize + storage_size)? as *mut u8;
|
let allocation = alloc(storage_offset + storage_size)? as *mut u8;
|
||||||
*ptr_to_list = allocation as *mut List;
|
*ptr_to_list = allocation as *mut List;
|
||||||
let storage = allocation.offset(storage_offset as isize) as *mut ();
|
let storage = allocation.offset(storage_offset as isize) as *mut ();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user