Skip to content

Commit

Permalink
fix typo in set_recv_slot
Browse files Browse the repository at this point in the history
Signed-off-by: Alwin Joshy <[email protected]>
  • Loading branch information
alwin-joshy authored and nspin committed May 29, 2024
1 parent 507a9e2 commit 914b0ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sel4/src/ipc_buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ impl IpcBuffer {
let inner = self.inner_mut();
inner.receiveCNode = slot.root().bits();
inner.receiveIndex = slot.path().bits();
inner.receiveCNode = slot.path().depth().try_into().unwrap();
inner.receiveDepth = slot.path().depth().try_into().unwrap();
}
}

0 comments on commit 914b0ea

Please sign in to comment.