diff options
Diffstat (limited to 'vendor/object/tests/read')
-rw-r--r-- | vendor/object/tests/read/coff.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/object/tests/read/coff.rs b/vendor/object/tests/read/coff.rs index 3e61ec284..dcf3b3c6a 100644 --- a/vendor/object/tests/read/coff.rs +++ b/vendor/object/tests/read/coff.rs @@ -8,7 +8,7 @@ fn coff_extended_relocations() { let path_to_obj: PathBuf = ["testfiles", "coff", "relocs_overflow.o"].iter().collect(); let contents = fs::read(&path_to_obj).expect("Could not read relocs_overflow.o"); let file = - read::coff::CoffFile::parse(&contents[..]).expect("Could not parse relocs_overflow.o"); + read::coff::CoffFile::<_>::parse(&contents[..]).expect("Could not parse relocs_overflow.o"); let code_section = file .section_by_name(".text") .expect("Could not find .text section in relocs_overflow.o"); |