From: nasm-bot f. H. P. A. <hp...@li...> - 2016-05-09 18:42:16
|
Commit-ID: 3d72e45a137dcf5ff014856ea631811200341ad3 Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=3d72e45a137dcf5ff014856ea631811200341ad3 Author: H. Peter Anvin <hp...@li...> AuthorDate: Mon, 9 May 2016 11:36:55 -0700 Committer: H. Peter Anvin <hp...@li...> CommitDate: Mon, 9 May 2016 11:36:55 -0700 outmacho: Fix missing brace Fix a missing brace introduced in checkin 84f6860ed53492976c9d79e9a8a0bdc60da78bc6. This was a transcription error of mine; Zenith432's original patch was correct. Cc: Zenith432 <zen...@us...> Signed-off-by: H. Peter Anvin <hp...@li...> --- output/outmacho.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/output/outmacho.c b/output/outmacho.c index 70936ec..6887d8f 100644 --- a/output/outmacho.c +++ b/output/outmacho.c @@ -1323,7 +1323,7 @@ static void macho_write_section (void) l += sectstab[r->snum]->addr; if (r->pcrel) l -= s->addr; - } else if (r->pcrel && r->type == GENERIC_RELOC_VANILLA) + } else if (r->pcrel && r->type == GENERIC_RELOC_VANILLA) { l -= s->addr; } |