Skip to content

Commit 218b383

Browse files
committed
Rustfmt
1 parent 53235d2 commit 218b383

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl MetadataLoader for CraneliftMetadataLoader {
4646
let archive = object::read::archive::ArchiveFile::parse(&*data)
4747
.map_err(|e| format!("{:?}", e))?;
4848

49-
for entry_result in archive.members() {
49+
for entry_result in archive.members() {
5050
let entry = entry_result.map_err(|e| format!("{:?}", e))?;
5151
if entry.name() == METADATA_FILENAME.as_bytes() {
5252
return Ok(entry.data());

0 commit comments

Comments
 (0)