diff --git a/nemu/src/utils/elf-parser.c b/nemu/src/utils/elf-parser.c index 326da6e..e6b07e8 100644 --- a/nemu/src/utils/elf-parser.c +++ b/nemu/src/utils/elf-parser.c @@ -15,7 +15,7 @@ void init_elf(const char *path) { FAILED_GOTO(failed_nosym, fread(&header, sizeof(Elf32_Ehdr), 1, elf_file) <= 0); FAILED_GOTO(failed_nosym, fseek(elf_file, header.e_shoff, SEEK_SET) != 0); printf("%hu %hu %u\n", header.e_shentsize, header.e_shnum, header.e_shoff); - FAILED_GOTO(failed_nosym, fread(§ion_header, header.e_shentsize, header.e_shnum, elf_file) <= 0); + FAILED_GOTO(failed_nosym, fread(section_header, header.e_shentsize, header.e_shnum, elf_file) <= 0); Elf32_Shdr *symtab = NULL, *strtab = NULL; for(int i = 0; i < header.e_shnum; i++) {