diff options
author | John Gilmore <gnu@cygnus> | 1991-11-22 16:45:04 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1991-11-22 16:45:04 +0000 |
commit | 8c4a1ace3d0ad925f513b3c03530cfeaa466fab1 (patch) | |
tree | eafa82608abebde01c5091473aea615b56be2988 /bfd/aoutx.h | |
parent | 8013e17047ee5006dc9890579772c8d5eab186bf (diff) | |
download | gdb-8c4a1ace3d0ad925f513b3c03530cfeaa466fab1.zip gdb-8c4a1ace3d0ad925f513b3c03530cfeaa466fab1.tar.gz gdb-8c4a1ace3d0ad925f513b3c03530cfeaa466fab1.tar.bz2 |
ALIGN->BFD_ALIGN
Diffstat (limited to 'bfd/aoutx.h')
-rw-r--r-- | bfd/aoutx.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bfd/aoutx.h b/bfd/aoutx.h index 89b989a..070dddc 100644 --- a/bfd/aoutx.h +++ b/bfd/aoutx.h @@ -619,7 +619,8 @@ boolean if (abfd->flags & (D_PAGED|WP_TEXT)) { bfd_size_type text_pad = - ALIGN(text_size, adata(abfd)->segment_size) - text_size; + BFD_ALIGN(text_size, adata(abfd)->segment_size) + - text_size; text_end += text_pad; obj_textsec(abfd)->size += text_pad; } |