diff options
author | Roland McGrath <roland@gnu.org> | 2005-01-22 08:03:27 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-01-22 08:03:27 +0000 |
commit | 91bf35de4c18fb4ed0bb495a8ad81a55311a273f (patch) | |
tree | c7151bd67938afb79bccf4dcceaedee7b41fc5fe /elf | |
parent | be184b1d265431c975332eea4047d3a69f7e9f57 (diff) | |
download | glibc-91bf35de4c18fb4ed0bb495a8ad81a55311a273f.tar glibc-91bf35de4c18fb4ed0bb495a8ad81a55311a273f.tar.gz glibc-91bf35de4c18fb4ed0bb495a8ad81a55311a273f.tar.bz2 glibc-91bf35de4c18fb4ed0bb495a8ad81a55311a273f.zip |
2005-01-21 Roland McGrath <roland@redhat.com>
* elf/dl-runtime.c (_dl_profile_fixup): Remove const from REGS.
* sysdeps/i386/dl-machine.h: Update decl.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/dl-runtime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-runtime.c b/elf/dl-runtime.c index ab177b826a..56d2371537 100644 --- a/elf/dl-runtime.c +++ b/elf/dl-runtime.c @@ -1,5 +1,5 @@ /* On-demand PLT fixup for shared objects. - Copyright (C) 1995-2002, 2003, 2004, 2005 Free Software Foundation, Inc. + Copyright (C) 1995-2002,2003,2004,2005 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -129,7 +129,7 @@ _dl_profile_fixup ( ELF_MACHINE_RUNTIME_FIXUP_ARGS, #endif struct link_map *l, ElfW(Word) reloc_offset, - ElfW(Addr) retaddr, const void *regs, long int *framesizep) + ElfW(Addr) retaddr, void *regs, long int *framesizep) { void (*mcount_fct) (ElfW(Addr), ElfW(Addr)) = INTUSE(_dl_mcount); |