mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-01-24 16:35:40 +08:00
outmacho: Fix missing brace
Fix a missing brace introduced in checkin
84f6860ed5
. This was a transcription
error of mine; Zenith432's original patch was correct.
Cc: Zenith432 <zenith432@users.sourceforge.net>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
This commit is contained in:
parent
3c27bdcaee
commit
3d72e45a13
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user