Skip to content

Commit b75f42c

Browse files
committed
style: apply rustfmt to musl-gated channel binding
https://claude.ai/code/session_01VqiMHiGeViu1pGhWwJ67Qc
1 parent ca7dec7 commit b75f42c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

crates/fspy/src/unix/mod.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,7 @@ impl SpyImpl {
9393
let (ipc_channel_conf, ipc_receiver) =
9494
channel(SHM_CAPACITY).map_err(SpawnError::ChannelCreation)?;
9595
#[cfg(target_env = "musl")]
96-
let (_, ipc_receiver) =
97-
channel(SHM_CAPACITY).map_err(SpawnError::ChannelCreation)?;
96+
let (_, ipc_receiver) = channel(SHM_CAPACITY).map_err(SpawnError::ChannelCreation)?;
9897

9998
let payload = Payload {
10099
#[cfg(not(target_env = "musl"))]

0 commit comments

Comments
 (0)