summaryrefslogtreecommitdiffhomepage
path: root/talpid_ipc/src
diff options
context:
space:
mode:
Diffstat (limited to 'talpid_ipc/src')
-rw-r--r--talpid_ipc/src/zmq_ipc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/talpid_ipc/src/zmq_ipc.rs b/talpid_ipc/src/zmq_ipc.rs
index ff29edc312..24d8e2f5d1 100644
--- a/talpid_ipc/src/zmq_ipc.rs
+++ b/talpid_ipc/src/zmq_ipc.rs
@@ -27,7 +27,7 @@ pub fn start_new_server<T, F>(on_message: F) -> Result<IpcServerId>
return Ok(connection_string);
}
}
- bail!(ErrorKind::CouldNotStartServer)
+ bail!(ErrorKind::CouldNotStartServer);
}
fn start_zmq_server(connection_string: &str) -> zmq::Result<zmq::Socket> {