Skip to content

Commit

Permalink
Fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisduerr committed Feb 21, 2024
1 parent 1f12f77 commit d41fac9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ipc_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::io::{BufRead, BufReader, Write};
use std::os::unix::net::{UnixListener, UnixStream};
use std::path::PathBuf;

use catacomb_ipc::{self, AppIdMatcher, DpmsState, IpcMessage, WindowScale};
use catacomb_ipc::{AppIdMatcher, DpmsState, IpcMessage, WindowScale};
use smithay::reexports::calloop::LoopHandle;
use tracing::{error, warn};

Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::process::{Command, Stdio};
use std::{env, io, ptr};

use catacomb_ipc::{DpmsState, IpcMessage};
use clap::{self, Parser, Subcommand};
use clap::{Parser, Subcommand};
#[cfg(feature = "profiling")]
use profiling::puffin;
#[cfg(feature = "profiling")]
Expand Down
2 changes: 1 addition & 1 deletion src/socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use std::os::unix::net::{UnixListener, UnixStream};

use smithay::reexports::calloop::generic::Generic;
use smithay::reexports::calloop::{
self, EventSource, Interest, Mode, Poll, PostAction, Readiness, Token, TokenFactory,
EventSource, Interest, Mode, Poll, PostAction, Readiness, Token, TokenFactory,
};

/// Unix domain socket source.
Expand Down

0 comments on commit d41fac9

Please sign in to comment.