From: nasm-bot f. C. G. <gor...@gm...> - 2016-04-24 18:00:26
|
Commit-ID: 3421a3f3f34a9b6c4edef69e40dc1b38d58dade3 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=3421a3f3f34a9b6c4edef69e40dc1b38d58dade3 Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 24 Apr 2016 20:57:52 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 24 Apr 2016 20:57:52 +0300 out: Elf -- Fix typo in section name Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- output/outelf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/outelf.c b/output/outelf.c index 72eb7ea..fcae88b 100644 --- a/output/outelf.c +++ b/output/outelf.c @@ -1565,7 +1565,7 @@ static void elf_write(void) nsections++; /* for the section itself */ if (sects[i]->head) { nsections++; /* for its relocations */ - add_sectname(is_elf32() ? ".rel" : "rela", sects[i]->name); + add_sectname(is_elf32() ? ".rel" : ".rela", sects[i]->name); } } |