diff options
| author | Erik Larkö <erik@mullvad.net> | 2017-03-03 13:22:57 +0800 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-03-06 13:22:36 +0100 |
| commit | d515ffe0d33c71ed4ecd6ac333e8d0f687e05cc0 (patch) | |
| tree | a617e2747596a3daaccd5e3cf5f3ec1a3fcc2739 | |
| parent | 3dbbd423d0596e398d72c5207eec04c1b28c2ef7 (diff) | |
| download | mullvadvpn-d515ffe0d33c71ed4ecd6ac333e8d0f687e05cc0.tar.xz mullvadvpn-d515ffe0d33c71ed4ecd6ac333e8d0f687e05cc0.zip | |
Fix stupid mistake
| -rw-r--r-- | talpid_ipc/src/nop_ipc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/talpid_ipc/src/nop_ipc.rs b/talpid_ipc/src/nop_ipc.rs index c8c0bbcc2f..8faa58ea34 100644 --- a/talpid_ipc/src/nop_ipc.rs +++ b/talpid_ipc/src/nop_ipc.rs @@ -13,7 +13,7 @@ fn start_new_server(_on_message: Box<OnMessage<Vec<u8>>>) -> Result<IpcServerId> pub struct IpcClient; impl IpcClient { pub fn new(server_id: IpcServerId) -> Self { - IpcClient; + IpcClient } pub fn send(mut self, message: &[u8]) -> Result<()> { |
