We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25d238d commit aa4fed1Copy full SHA for aa4fed1
1 file changed
crates/fspy_shared/src/ipc/channel/mod.rs
@@ -81,7 +81,7 @@ impl ChannelConf {
81
let shm = conf.open().map_err(io::Error::other)?;
82
83
// SAFETY: shm valide + lock garantit exclusivité
84
- unsafe { ShmWriter::new(shm) }
+ WriterHandle::Shmem(unsafe { ShmWriter::new(shm) })
85
};
86
87
Ok(Sender { writer, lock_file, lock_file_path: self.lock_file_path.clone() })
0 commit comments