From: Ulrich Drepper Date: Thu, 17 Jan 2002 23:21:33 +0000 (+0000) Subject: (__dl_runtime_resolve): Remove `const' from `got'. X-Git-Tag: glibc-2.16-ports-before-merge~1760 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=046f02be6f9c5d813a32dea6c1c0cdf49706f18a;p=thirdparty%2Fglibc.git (__dl_runtime_resolve): Remove `const' from `got'. --- diff --git a/sysdeps/mips/dl-machine.h b/sysdeps/mips/dl-machine.h index da9a5d3279c..1dc225ed4b6 100644 --- a/sysdeps/mips/dl-machine.h +++ b/sysdeps/mips/dl-machine.h @@ -276,8 +276,8 @@ __dl_runtime_resolve (ElfW(Word) sym_index, \ = (const void *) D_PTR (l, l_info[DT_SYMTAB]); \ const char *strtab \ = (const void *) D_PTR (l, l_info[DT_STRTAB]); \ - const ElfW(Addr) *got \ - = (const ElfW(Addr) *) D_PTR (l, l_info[DT_PLTGOT]); \ + ElfW(Addr) *got \ + = (ElfW(Addr) *) D_PTR (l, l_info[DT_PLTGOT]); \ const ElfW(Word) local_gotno \ = (const ElfW(Word)) l->l_info[DT_MIPS (LOCAL_GOTNO)]->d_un.d_val; \ const ElfW(Word) gotsym \