Skip to content

Commit

Permalink
Add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Fancy2209 committed Dec 17, 2024
1 parent 4422636 commit a4d52ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tokio/src/signal/unix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,9 @@ impl SignalKind {
/// on some file descriptor. By default, this signal is ignored.
pub const fn io() -> Self {
#[cfg(not(target_os = "haiku"))]
Self(libc::SIGIO)
Self(libc::SIGIO);
#[cfg(target_os = "haiku")]
Self(libc::SIGPOLL)
Self(libc::SIGPOLL);
}

/// Represents the `SIGPIPE` signal.
Expand Down

0 comments on commit a4d52ef

Please sign in to comment.