Minor fix

This commit is contained in:
2026-05-20 20:54:36 +03:00
parent 2e6faeeb72
commit 5a668b3de3
+1 -1
View File
@@ -83,6 +83,6 @@ void parse_elf(FILE *file) {
printf("Set file cursor to: %"PRIu64"\n", header.e_shoff); printf("Set file cursor to: %"PRIu64"\n", header.e_shoff);
Elf64_Shdr section_header; Elf64_Shdr section_header;
fread(&header, sizeof(section_header), 1, file); fread(&section_header, sizeof(section_header), 1, file);
print_elf64_section_header(&section_header); print_elf64_section_header(&section_header);
} }