Skip to content

Commit 3346fcd

Browse files
committed
--autofanctrl: Fix uefi parsing
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 3c8387d commit 3346fcd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • framework_lib/src/commandline

framework_lib/src/commandline/uefi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ pub fn parse(args: &[String]) -> Cli {
205205
None
206206
};
207207
found_an_option = true;
208-
} else if arg == "--autofanctrol" {
208+
} else if arg == "--autofanctrl" {
209209
cli.autofanctrl = if args.len() > i + 1 {
210210
if let Ok(fan_id) = args[i + 1].parse::<u8>() {
211211
Some(Some(fan_id))

0 commit comments

Comments
 (0)