Skip to content

Commit 94308c4

Browse files
committed
fix
1 parent 317a2dd commit 94308c4

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/macos.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@ impl ECMAScriptAtomicWaitImpl for Racy<'_, u32> {
3232
}
3333
};
3434
if result >= 0 {
35-
eprintln!("Result: {result:?}");
3635
Ok(())
3736
} else {
3837
let errno = std::io::Error::last_os_error().raw_os_error().unwrap_or(0);
39-
eprintln!("Errno: {errno:?}");
4038
if errno == libc::ETIMEDOUT {
4139
Err(FutexError::Timeout)
4240
} else {

src/windows.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ impl ECMAScriptAtomicWaitImpl for Racy<'_, u32> {
3636
Ok(())
3737
} else {
3838
let errno = std::io::Error::last_os_error().raw_os_error().unwrap_or(0);
39-
eprintln!("Errno: {errno:?}");
4039
if errno == ERROR_TIMEOUT as i32 {
4140
Err(FutexError::Timeout)
4241
} else {

0 commit comments

Comments
 (0)