Skip to content

Commit

Permalink
Fixed code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
devttys0 committed Nov 29, 2024
1 parent d73658d commit 7fe81a3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/signatures/uboot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ pub fn uboot_parser(file_data: &[u8], offset: usize) -> Result<SignatureResult,

if !uboot_version_string.is_empty() {
result.size = uboot_version_string.len();
result.description =
format!("{}: {}", result.description, uboot_version_string);
result.description = format!("{}: {}", result.description, uboot_version_string);
return Ok(result);
}
}
Expand Down

0 comments on commit 7fe81a3

Please sign in to comment.