Skip to content

Commit

Permalink
fix: fix rust-sel4 recv slot
Browse files Browse the repository at this point in the history
  • Loading branch information
yfblock committed Sep 12, 2024
1 parent d86e61f commit 0a3f8b2
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 @@ -86,6 +86,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 0a3f8b2

Please sign in to comment.