Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanStokes committed Jun 5, 2023
1 parent 837feea commit 02ed6dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/paging.rs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ struct PageTableWithLevel<T: Translation> {

// SAFETY: The underlying PageTable is process-wide and can be safely accessed from any thread
// with appropriate synchronization. This type manages ownership for the raw pointer.
unsafe impl <T: Translation + Send> Send for PageTableWithLevel<T> {}
unsafe impl<T: Translation + Send> Send for PageTableWithLevel<T> {}

impl<T: Translation> PageTableWithLevel<T> {
/// Allocates a new, zeroed, appropriately-aligned page table with the given translation,
Expand Down

0 comments on commit 02ed6dd

Please sign in to comment.