aboutsummaryrefslogtreecommitdiff
path: root/examples/std/src
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2021-10-18 01:37:35 +0200
committerDario Nieuwenhuis <[email protected]>2021-10-18 01:37:35 +0200
commitd7b768992eadf7443a1d0cc9e4f1a82c4cce6e21 (patch)
tree80d8c2a2fa3d59cf93e8ed2058ca055d6ef1a686 /examples/std/src
parent00d67dc21a61fd646193c23caf50d9e6d3b530f2 (diff)
examples/std: fix warning
Diffstat (limited to 'examples/std/src')
-rw-r--r--examples/std/src/tuntap.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/std/src/tuntap.rs b/examples/std/src/tuntap.rs
index 53d3afd5c..a32099404 100644
--- a/examples/std/src/tuntap.rs
+++ b/examples/std/src/tuntap.rs
@@ -50,7 +50,6 @@ fn ifreq_ioctl(
50#[derive(Debug)] 50#[derive(Debug)]
51pub struct TunTap { 51pub struct TunTap {
52 fd: libc::c_int, 52 fd: libc::c_int,
53 ifreq: ifreq,
54 mtu: usize, 53 mtu: usize,
55} 54}
56 55
@@ -88,7 +87,7 @@ impl TunTap {
88 // smoltcp counts the entire Ethernet packet in the MTU, so add the Ethernet header size to it. 87 // smoltcp counts the entire Ethernet packet in the MTU, so add the Ethernet header size to it.
89 let mtu = ip_mtu + EthernetFrame::<&[u8]>::header_len(); 88 let mtu = ip_mtu + EthernetFrame::<&[u8]>::header_len();
90 89
91 Ok(TunTap { fd, mtu, ifreq }) 90 Ok(TunTap { fd, mtu })
92 } 91 }
93 } 92 }
94} 93}