From 5d299775bc02fd076992df4574d832042047cb4d Mon Sep 17 00:00:00 2001 From: SajjadPourali Date: Sun, 1 Dec 2024 12:54:48 -0500 Subject: [PATCH] Fix clippy issue --- examples/tun_wintun.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tun_wintun.rs b/examples/tun_wintun.rs index 5db5f4d..07002a6 100644 --- a/examples/tun_wintun.rs +++ b/examples/tun_wintun.rs @@ -34,7 +34,7 @@ async fn main() -> Result<(), Box> { config.destination(_gateway); #[cfg(target_os = "linux")] - config.platform(|config| { + config.platform_config(|config| { config.packet_information(true); });