]> sourceware.org Git - glibc.git/commitdiff
Typo fix in x86_64/dl-machine.h
authorRoland McGrath <roland@hack.frob.com>
Thu, 10 May 2012 17:20:51 +0000 (10:20 -0700)
committerRoland McGrath <roland@hack.frob.com>
Thu, 10 May 2012 17:20:51 +0000 (10:20 -0700)
ChangeLog
sysdeps/x86_64/dl-machine.h

index 559754ec6f2ad54fdd63846d01a2e1901b08a358..2a2cbda56fc9577b8f39d83a3e32f98247e507b3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012-05-10  Roland McGrath  <roland@hack.frob.com>
+
+       * sysdeps/x86_64/dl-machine.h (elf_machine_rela): Fix typo in last
+       change.  Update copyright years.
+
 2012-05-10  Joseph Myers  <joseph@codesourcery.com>
 
        * include/stdc-predef.h (__STDC_NO_THREADS__): Define.
index cf49d4292564a95f8c081bcfe2b7fdd0c952578c..934e0b0d6f31d63df2ab3d504c4d4e3dc63500cc 100644 (file)
@@ -1,5 +1,5 @@
 /* Machine-dependent ELF dynamic relocation inline functions.  x86-64 version.
-   Copyright (C) 2001-2006, 2008-2010, 2011 Free Software Foundation, Inc.
+   Copyright (C) 2001-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Andreas Jaeger <aj@suse.de>.
 
@@ -336,7 +336,7 @@ elf_machine_rela (struct link_map *map, const ElfW(Rela) *reloc,
                 bits but the GOT entry is 64 bits wide and the whole
                 64-bit entry is used as a signed quantity, so we need
                 to sign-extend the computed value to 64 bits.  */
-             *(Elf64_Sxword *) reloc_addr = (Elf64_Sxword) (Elf32_Sxword) value;
+             *(Elf64_Sxword *) reloc_addr = (Elf64_Sxword) (Elf32_Sword) value;
 #   else
              *reloc_addr = value;
 #   endif
This page took 0.103287 seconds and 5 git commands to generate.