Skip to content

Commit

Permalink
Run cargo fmt
Browse files Browse the repository at this point in the history
I am extremely sorry, this is my first time really contributing to such a project.
  • Loading branch information
OndrikB committed Aug 10, 2024
1 parent 4eb2431 commit ace238f
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/write/coff/object.rs
Original file line number Diff line number Diff line change
Expand Up @@ -654,10 +654,9 @@ impl<'a> Object<'a> {
length: section.size as u32,
number_of_relocations: section.relocations.len() as u32,
number_of_linenumbers: 0,
check_sum: if section.is_bss() {
0
}
else {
check_sum: if section.is_bss() {
0
} else {
checksum(section.data())
},
number: section_offsets[section_index].associative_section,
Expand Down

0 comments on commit ace238f

Please sign in to comment.