Skip to content

Commit

Permalink
adjust remaining targets
Browse files Browse the repository at this point in the history
- fix commit 7dc3886
- previous commit doesn't adjust all targets
  • Loading branch information
stlankes committed Jul 28, 2020
1 parent 1f5d69d commit a4fb1d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/std/src/sys/hermit/mod.rs
Expand Up @@ -106,7 +106,7 @@ pub unsafe extern "C" fn runtime_entry(
argv: *const *const c_char,
env: *const *const c_char,
) -> ! {
use crate::sys::hermit::fast_thread_local::run_dtors;
use crate::sys::hermit::thread_local_dtor::run_dtors;
extern "C" {
fn main(argc: isize, argv: *const *const c_char) -> i32;
}
Expand Down
2 changes: 1 addition & 1 deletion library/std/src/sys/hermit/thread.rs
Expand Up @@ -4,7 +4,7 @@ use crate::ffi::CStr;
use crate::io;
use crate::mem;
use crate::sys::hermit::abi;
use crate::sys::hermit::fast_thread_local::run_dtors;
use crate::sys::hermit::thread_local_dtor::run_dtors;
use crate::time::Duration;

pub type Tid = abi::Tid;
Expand Down

0 comments on commit a4fb1d0

Please sign in to comment.