]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Fix typo in ALIGN_N usage.
authorTimothy Wall <twall@alum.mit.edu>
Fri, 4 Feb 2000 19:49:21 +0000 (19:49 +0000)
committerTimothy Wall <twall@alum.mit.edu>
Fri, 4 Feb 2000 19:49:21 +0000 (19:49 +0000)
ld/ChangeLog
ld/ldlang.c

index 33ca5c1185cc916137294bd5ff474201ed6b9c48..8ceaf8bd0b9ab23fb81f25644811aad7ead45073 100644 (file)
@@ -1,3 +1,7 @@
+2000-02-04  Timothy Wall  <twall@redhat.com>
+
+       * ldlang.c (lang_size_sections): Fix typo in ALIGN_N invocation.
+
 2000-02-03  Timothy Wall <twall@redhat.com>
 
        * ld/ldexp.c (fold_name): Make SIZEOF operator return byte count, not
index 6896b2040188557fe52f5fc6008148a267ad725f..10e41c247f872e74e3b692719879191bcd1f01ea 100644 (file)
@@ -2824,8 +2824,8 @@ lang_size_sections (s, output_section_statement, prev, fill, dot, relax)
            
             /* put the section within the requested block size, or align at
                the block boundary */
-           after = ALIGN_N (os->bfd_section->vma,
-                            os->bfd_section->_raw_size / opb,
+           after = ALIGN_N (os->bfd_section->vma
+                            os->bfd_section->_raw_size / opb,
                             /* The coercion here is important, see ld.h.  */
                             (bfd_vma) os->block_value);