diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-03-07 09:09:57 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-03-07 09:09:57 +0100 |
| commit | 261d0bff544fa7d6b5b18c35e02c0e98fb565324 (patch) | |
| tree | e7a31b936f0d808aff058ad0e4373f84cac6b64d | |
| parent | 370e68a447c788c026ab573db7eb932735ff2554 (diff) | |
| download | mullvadvpn-261d0bff544fa7d6b5b18c35e02c0e98fb565324.tar.xz mullvadvpn-261d0bff544fa7d6b5b18c35e02c0e98fb565324.zip | |
rustfmt
| -rw-r--r-- | talpid_cli/src/main.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/talpid_cli/src/main.rs b/talpid_cli/src/main.rs index f31be12e77..dfc13b74d5 100644 --- a/talpid_cli/src/main.rs +++ b/talpid_cli/src/main.rs @@ -67,9 +67,7 @@ fn main_loop(mut monitor: OpenVpnMonitor) -> Result<()> { OpenVpnEvent::PluginEvent(Ok((event, env))) => { println!("OpenVPN event:\nEvent: {:?}\nENV: {:?}", event, env); } - OpenVpnEvent::PluginEvent(Err(e)) => { - println!("Read error from plugin: {:?}", e) - } + OpenVpnEvent::PluginEvent(Err(e)) => println!("Read error from plugin: {:?}", e), } } std::thread::sleep(std::time::Duration::from_millis(500)); |
