Quellcode durchsuchen

Resolve tyvar_behind_raw_pointer warning (#37)

Rob Gries vor 7 Jahren
Ursprung
Commit
d66e8cb0e5
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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