diff options
| author | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2025-02-07 17:26:02 +0100 |
|---|---|---|
| committer | Sebastian Holmin <sebastian.holmin@mullvad.net> | 2025-02-12 10:15:22 +0100 |
| commit | 7c8985e10da96482092a5b0fc8ee4946b1ccb4cf (patch) | |
| tree | ab402692ada4a2f6a5fc5113896284818926f772 /talpid-core/src | |
| parent | 757146285392444a75a2334fdbc97f04bb9d5d96 (diff) | |
| download | mullvadvpn-7c8985e10da96482092a5b0fc8ee4946b1ccb4cf.tar.xz mullvadvpn-7c8985e10da96482092a5b0fc8ee4946b1ccb4cf.zip | |
Fix miscellaneous lints
Diffstat (limited to 'talpid-core/src')
| -rw-r--r-- | talpid-core/src/tunnel/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/talpid-core/src/tunnel/mod.rs b/talpid-core/src/tunnel/mod.rs index a617a9260d..70d496b031 100644 --- a/talpid-core/src/tunnel/mod.rs +++ b/talpid-core/src/tunnel/mod.rs @@ -270,7 +270,7 @@ impl TunnelMonitor { /// Consumes the monitor and blocks until the tunnel exits or there is an error. pub fn wait(self) -> Result<()> { - self.monitor.wait().map_err(Error::from) + self.monitor.wait() } } |
