Skip to content

Commit

Permalink
fix: variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Aug 12, 2024
1 parent 67ca10f commit cddebad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/raw/header.rs
Original file line number Diff line number Diff line change
Expand Up @@ -412,9 +412,9 @@ impl Header {
)?;
}
if self.version.supports::<Evlrs>() {
let elvr = self.evlr.unwrap_or_default();
write.write_u64::<LittleEndian>(elvr.start_of_first_evlr)?;
write.write_u32::<LittleEndian>(elvr.number_of_evlrs)?;
let evlr = self.evlr.unwrap_or_default();
write.write_u64::<LittleEndian>(evlr.start_of_first_evlr)?;
write.write_u32::<LittleEndian>(evlr.number_of_evlrs)?;
}
if self.version.supports::<LargeFiles>() {
let large_file = self.large_file.unwrap_or_default();
Expand Down

0 comments on commit cddebad

Please sign in to comment.