diff options
Diffstat (limited to 'ctr-std/src/sync')
| -rw-r--r-- | ctr-std/src/sync/once.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctr-std/src/sync/once.rs b/ctr-std/src/sync/once.rs index 1e7394c..c449315 100644 --- a/ctr-std/src/sync/once.rs +++ b/ctr-std/src/sync/once.rs @@ -248,7 +248,7 @@ impl Once { #[cold] fn call_inner(&'static self, ignore_poisoning: bool, - mut init: &mut FnMut(bool)) { + init: &mut FnMut(bool)) { let mut state = self.state.load(Ordering::SeqCst); 'outer: loop { |