change a panic\! for an unreachable\!

This commit is contained in:
Marc Planard 2023-06-04 11:32:11 +02:00
parent b4766a3301
commit c25d977598
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ impl TryFrom<u8> for Order {
6 => Intensity, 6 => Intensity,
7 => Kpps, 7 => Kpps,
8 => ColorBalance, 8 => ColorBalance,
_ => panic!("Can't be there") _ => unreachable!()
}) })
} }
} }