From: nasm-bot f. C. G. <gor...@gm...> - 2016-04-24 18:00:20
|
Commit-ID: 6285d72efbf6b8e69de685d1184927344e41c87a Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=6285d72efbf6b8e69de685d1184927344e41c87a Author: Cyrill Gorcunov <gor...@gm...> AuthorDate: Sun, 13 Mar 2016 11:12:06 +0300 Committer: Cyrill Gorcunov <gor...@gm...> CommitDate: Sun, 24 Apr 2016 20:02:40 +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) |