Explorar o código

Resolve tyvar_behind_raw_pointer warning (#37)

Rob Gries %!s(int64=7) %!d(string=hai) anos
pai
achega
d66e8cb0e5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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