From 011d7007deb74fa83cc29cb0960c22315369a87d Mon Sep 17 00:00:00 2001 From: zoanana990 Date: Sun, 6 Nov 2022 20:09:18 +0800 Subject: [PATCH] an annotation typo in elf.h --- src/elf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/elf.h b/src/elf.h index 1e8847d9c..4a0b85a53 100644 --- a/src/elf.h +++ b/src/elf.h @@ -52,7 +52,7 @@ bool elf_open(elf_t *e, const char *path); /* Find a symbol entry */ const struct Elf32_Sym *elf_get_symbol(elf_t *e, const char *name); -/* Find symbole from a specified ELF file */ +/* Find symbol from a specified ELF file */ const char *elf_find_symbol(elf_t *e, uint32_t addr); /* get the range of .data section from the ELF file */