Skip to content

Commit

Permalink
rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
sunfishcode committed Apr 22, 2024
1 parent 115adf5 commit efe2eb9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/relocate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use crate::arch::{
dynamic_table_addr, relocation_load, relocation_mprotect_readonly, relocation_store,
};
use core::ffi::c_void;
use core::ptr::{with_exposed_provenance, null, null_mut};
use core::ptr::{null, null_mut, with_exposed_provenance};
use linux_raw_sys::elf::*;
use linux_raw_sys::general::{AT_BASE, AT_ENTRY, AT_NULL, AT_PAGESZ};

Expand Down
2 changes: 1 addition & 1 deletion src/thread/libc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use alloc::boxed::Box;
use core::ffi::{c_int, c_void};
use core::mem::{size_of, transmute, zeroed};
use core::ptr::{with_exposed_provenance_mut, null_mut, without_provenance_mut, NonNull};
use core::ptr::{null_mut, with_exposed_provenance_mut, without_provenance_mut, NonNull};
use core::slice;
use rustix::io;

Expand Down

0 comments on commit efe2eb9

Please sign in to comment.