Clippy linting

This commit is contained in:
Neshura 2023-12-27 21:07:15 +01:00
parent cebad8abe4
commit 965bcf3cc8
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C
2 changed files with 24 additions and 29 deletions

View file

@ -45,8 +45,7 @@ impl InterfaceConfig {
return Err(());
}
};
let interface_ip = host_range.bitor(interface_address);
Ok(interface_ip)
Ok(host_range.bitor(interface_address))
}
}