Skip to content

Commit

Permalink
Fixed clippy problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Qubasa committed Nov 21, 2021
1 parent 6b66dbc commit f9d7eae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/wire/dhcpv4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ impl<'a> DhcpOption<'a> {
&DhcpOption::ClientNetworkInterfaceId(_) => 5,
&DhcpOption::VendorClassId(list) => 2 + list.len(),
&DhcpOption::Other { data, .. } => {
2 + data.len();
2 + data.len()
}
}
}
Expand Down

0 comments on commit f9d7eae

Please sign in to comment.