Skip to content

Commit

Permalink
crates/sel4-capdl-initializer: Fix bug
Browse files Browse the repository at this point in the history
Typo

Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Mar 5, 2024
1 parent f4d0c2d commit 2012cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/sel4-capdl-initializer/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ impl<'a, N: ObjectName, D: Content, M: GetEmbeddedFrame, B: BorrowMut<[PerObject
Some(cap) => self.orig_cap::<cap_type::SchedContext>(cap.object),
};

let fault_ep = match obj.temp_fault_ep() {
let fault_ep = match obj.fault_ep() {
None => init_thread::slot::NULL.cap().cast::<cap_type::Endpoint>(),
Some(cap) => {
let orig = self.orig_cap::<cap_type::Endpoint>(cap.object);
Expand Down

0 comments on commit 2012cbf

Please sign in to comment.