Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
riverar committed Sep 18, 2023
1 parent 80863ed commit 7970f7b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions crates/tools/msvc/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -188,13 +188,11 @@ fn make_reproducible(lib: &std::path::Path) {
let skip_member = match &buf[..4] {
b"/ " => true, // Linker member
b"// " => true, // Long names table
_ => false
_ => false,
};

// Timestamp, User ID, Group ID, and Mode
archive
.seek(SeekFrom::Current(12 + 6 + 6 + 8))
.unwrap();
archive.seek(SeekFrom::Current(12 + 6 + 6 + 8)).unwrap();

// Size, sans header
archive.read_exact(&mut buf[..10]).unwrap();
Expand Down

0 comments on commit 7970f7b

Please sign in to comment.