Преглед изворни кода

Resolve tyvar_behind_raw_pointer warning (#37)

Rob Gries пре 7 година
родитељ
комит
d66e8cb0e5
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/elf_sections.rs

+ 1 - 1
src/elf_sections.rs

@@ -8,7 +8,7 @@ pub struct ElfSectionsTag {
 pub fn elf_sections_tag(tag: &Tag) -> ElfSectionsTag {
     assert_eq!(9, tag.typ);
     let es = ElfSectionsTag {
-        inner: unsafe { (tag as *const _).offset(1) } as *const _,
+        inner: unsafe { (tag as *const Tag).offset(1) } as *const ElfSectionsTagInner,
     };
     assert!((es.get().entry_size * es.get().shndx) <= tag.size);
     es