From: nasm-bot f. C. G. <gor...@gm...> - 2017-03-12 08:42:25
|
Commit-ID: fa38564c495eb999813012863d1937dd0b87efde Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=fa38564c495eb999813012863d1937dd0b87efde Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Wed, 8 Mar 2017 23:36:18 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 12 Mar 2017 11:40:52 +0300 output: elf -- Fix typo in ELF32_ST_INFO Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- output/elf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/elf.h b/output/elf.h index 149879d..4ae818a 100644 --- a/output/elf.h +++ b/output/elf.h @@ -258,7 +258,7 @@ #define ELF32_ST_BIND(i) ((i) >> 4) #define ELF32_ST_MKBIND(i) ((i) << 4) /* just a helper */ #define ELF32_ST_TYPE(i) ((i) & 0xf) -#define ELF32_ST_INFO(b, i) (ELF_ST_MKBIND(b) + ELF_ST_TYPE(i)) +#define ELF32_ST_INFO(b, i) (ELF32_ST_MKBIND(b) + ELF32_ST_TYPE(i)) #define ELF64_ST_BIND(i) ELF32_ST_BIND(i) #define ELF64_ST_MKBIND(i) ELF32_ST_MKBIND(i) |