Skip to content

Commit

Permalink
Fix after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
PolyMeilex committed Jan 7, 2024
1 parent b1002d0 commit 7cb3fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/time.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,6 @@ pub fn clock_nanosleep(
if ret == 0 {
Ok(remain)
} else {
Err(Errno::from_i32(ret))
Err(Errno::from_raw(ret))
}
}

0 comments on commit 7cb3fcc

Please sign in to comment.