Skip to content

Commit f9d7eae

Browse files
committed
Fixed clippy problem
1 parent 6b66dbc commit f9d7eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wire/dhcpv4.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ impl<'a> DhcpOption<'a> {
346346
&DhcpOption::ClientNetworkInterfaceId(_) => 5,
347347
&DhcpOption::VendorClassId(list) => 2 + list.len(),
348348
&DhcpOption::Other { data, .. } => {
349-
2 + data.len();
349+
2 + data.len()
350350
}
351351
}
352352
}

0 commit comments

Comments
 (0)