summaryrefslogtreecommitdiffhomepage
path: root/talpid-ipc
diff options
context:
space:
mode:
Diffstat (limited to 'talpid-ipc')
-rw-r--r--talpid-ipc/src/lib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/talpid-ipc/src/lib.rs b/talpid-ipc/src/lib.rs
index 16d952a5be..aeecb35b7f 100644
--- a/talpid-ipc/src/lib.rs
+++ b/talpid-ipc/src/lib.rs
@@ -81,7 +81,8 @@ impl IpcServer {
.map(|e| Err(e))
.unwrap_or(Ok(server))
.chain_err(|| ErrorKind::IpcServerError)
- }).map(|server| IpcServer {
+ })
+ .map(|server| IpcServer {
path: path.to_owned(),
server,
})?;