Skip to content

Commit

Permalink
fix: accidental paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
soehrl committed Nov 14, 2024
1 parent c308040 commit 5511e87
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing-tape-recorder/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ impl TapeRecorderInner {
#[inline]
fn chapter(&self, chapter_index: u64) -> &Chapter {
let chapter = &self.chapters[(chapter_index & 1) as usize];
while chapter.chapter_index.load(Ordering::Acquire) != chapter_index {recorderlibrs
while chapter.chapter_index.load(Ordering::Acquire) != chapter_index {
println!("waiting for {chapter_index}");
hint::spin_loop();
}
Expand Down

0 comments on commit 5511e87

Please sign in to comment.