Skip to content

Commit 909658a

Browse files
committed
Fix formatting
1 parent 350a27f commit 909658a

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

sqlite-watcher/src/main.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,9 @@ async fn serve(queue_db: Option<PathBuf>, listen: &str, token_file: Option<PathB
103103
#[cfg(unix)]
104104
WatcherEndpoint::Unix(path) => spawn_unix(&path, queue.path().to_path_buf(), token)?,
105105
#[cfg(not(unix))]
106-
WatcherEndpoint::Unix(_) => bail!("Unix sockets are not supported on Windows. Use tcp:host:port instead."),
106+
WatcherEndpoint::Unix(_) => {
107+
bail!("Unix sockets are not supported on Windows. Use tcp:host:port instead.")
108+
}
107109
WatcherEndpoint::Pipe(name) => bail!("named pipes are not yet supported ({name})"),
108110
};
109111
println!("Press Ctrl+C to stop sqlite-watcher");

0 commit comments

Comments
 (0)