diff options
| -rw-r--r-- | talpid-core/src/routing/linux/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/talpid-core/src/routing/linux/mod.rs b/talpid-core/src/routing/linux/mod.rs index a7adf839fe..77e5c372bd 100644 --- a/talpid-core/src/routing/linux/mod.rs +++ b/talpid-core/src/routing/linux/mod.rs @@ -432,7 +432,7 @@ enum IpVersion { } impl IpVersion { - fn to_route_arg(&self) -> &'static str { + fn to_route_arg(self) -> &'static str { match self { IpVersion::V4 => "-4", IpVersion::V6 => "-6", |
