Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
TimonPost committed Apr 7, 2023
1 parent 8233d42 commit 2af0a1e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/event/event_api.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
mod types;
mod api;
#[cfg(feature = "event-stream")]
#[cfg(unix)]
pub(crate) mod waker;
pub(crate) mod filter;
pub(crate) mod read;
Expand Down
2 changes: 1 addition & 1 deletion src/event/event_api/source/unix/mio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use crate::Result;

#[cfg(feature = "event-stream")]
use crate::event::sys::Waker;
use crate::terminal::file_descriptor::{tty_fd, FileDesc};
use crate::terminal::sys::file_descriptor::{tty_fd, FileDesc};
use crate::event::{
source::EventSource,
sys::unix::{
Expand Down
2 changes: 1 addition & 1 deletion src/event/event_api/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ impl Command for PushKeyboardEnhancementFlags {
}

#[cfg(windows)]
fn execute_winapi(&self) -> Result<()> {
fn execute_winapi(&self) -> crate::Result<()> {
use std::io;

Err(io::Error::new(
Expand Down

0 comments on commit 2af0a1e

Please sign in to comment.