Skip to content

Commit 19e3ea8

Browse files
committed
fix
1 parent df1e548 commit 19e3ea8

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/macos.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ impl ECMAScriptAtomicWaitImpl for Racy<'_, u32> {
3232
}
3333
};
3434
if result >= 0 {
35-
eprintln!("{result:?}");
35+
eprintln!("Result: {result:?}");
3636
Ok(())
3737
} else {
3838
let errno = std::io::Error::last_os_error().raw_os_error().unwrap_or(0);

src/windows.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ impl ECMAScriptAtomicWaitImpl for Racy<'_, u32> {
3333
)
3434
};
3535
if result == 1 {
36+
eprintln!("Result: {result}");
3637
Ok(())
3738
} else {
3839
let errno = std::io::Error::last_os_error().raw_os_error().unwrap_or(0);

0 commit comments

Comments
 (0)