From: nasm-bot f. C. G. <gor...@gm...> - 2016-04-21 06:18:22
|
Commit-ID: c154d94a2c3b801f2b23bb2ba920decb6e78abbc Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=c154d94a2c3b801f2b23bb2ba920decb6e78abbc Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 13 Mar 2016 11:12:06 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Mon, 11 Apr 2016 00:07:14 +0300 out: Elf64, Elfx32 -- Style fix Signed-off-by: Cyrill Gorcunov <gor...@gm...> --- output/outelf64.c | 4 +--- output/outelfx32.c | 1 - 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/output/outelf64.c b/output/outelf64.c index 7aed5a2..cfb6e57 100644 --- a/output/outelf64.c +++ b/output/outelf64.c @@ -217,7 +217,6 @@ static void elf_init(void) define_label("..gottpoff", elf_gottpoff_sect + 1, 0L, NULL, false, false); def_seg = seg_alloc(); - } static void elf_cleanup(void) @@ -1835,8 +1834,7 @@ static void dwarf_generate(void) psect = dwarf_fsect; totlen = 0; highaddr = 0; - for (indx = 0; indx < dwarf_nsections; indx++) - { + for (indx = 0; indx < dwarf_nsections; indx++) { plinep = psect->psaa; /* Line Number Program Epilogue */ saa_write8(plinep,2); /* std op 2 */ diff --git a/output/outelfx32.c b/output/outelfx32.c index 1c504db..5e83239 100644 --- a/output/outelfx32.c +++ b/output/outelfx32.c @@ -217,7 +217,6 @@ static void elf_init(void) define_label("..gottpoff", elf_gottpoff_sect + 1, 0L, NULL, false, false); def_seg = seg_alloc(); - } static void elf_cleanup(void) |