Skip to content

Commit

Permalink
style(format): rustfmt
Browse files Browse the repository at this point in the history
  • Loading branch information
imsnif committed Nov 30, 2019
1 parent a398596 commit 975f581
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/os/mod.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#[cfg(target_os = "linux")]
pub (self) mod linux;
pub(self) mod linux;

#[cfg(target_os = "macos")]
pub (self) mod macos;
pub(self) mod macos;

#[cfg(target_os = "macos")]
mod lsof_utils;
Expand Down
2 changes: 1 addition & 1 deletion src/os/shared.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ use ::std::time;

use signal_hook::iterator::Signals;

use crate::OsInputOutput;
#[cfg(target_os = "linux")]
use crate::os::linux::get_open_sockets;
#[cfg(target_os = "macos")]
use crate::os::macos::get_open_sockets;
use crate::OsInputOutput;

pub struct KeyboardEvents;

Expand Down

0 comments on commit 975f581

Please sign in to comment.