Skip to content

Commit

Permalink
Fix formatting, again.
Browse files Browse the repository at this point in the history
  • Loading branch information
andrisaar committed Mar 17, 2022
1 parent e6cc212 commit e5aac72
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion experimental/uefi/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ fn main(_handle: Handle, system_table: &mut SystemTable<Boot>) -> Status {

let status = writeln!(system_table.stdout(), "Hello World!");

status.map(|_| Status::SUCCESS).unwrap_or(Status::DEVICE_ERROR)
status
.map(|_| Status::SUCCESS)
.unwrap_or(Status::DEVICE_ERROR)
}

#[cfg(test)]
Expand Down

0 comments on commit e5aac72

Please sign in to comment.