mirror of git://sourceware.org/git/glibc.git
elf/rtld.c (dl_main) [HAVE_AUX_VECTOR]: Add a cast.
This commit is contained in:
parent
e5c42595d0
commit
4dd019e3a1
|
@ -1,3 +1,7 @@
|
||||||
|
2010-04-05 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* elf/rtld.c (dl_main) [HAVE_AUX_VECTOR]: Add a cast.
|
||||||
|
|
||||||
2010-04-05 Ulrich Drepper <drepper@redhat.com>
|
2010-04-05 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
* po/nl.po: Update from translation team.
|
* po/nl.po: Update from translation team.
|
||||||
|
|
|
@ -1091,7 +1091,7 @@ of this helper program; chances are you did not intend to run this program.\n\
|
||||||
switch (av->a_type)
|
switch (av->a_type)
|
||||||
{
|
{
|
||||||
case AT_PHDR:
|
case AT_PHDR:
|
||||||
av->a_un.a_val = phdr;
|
av->a_un.a_val = (uintptr_t) phdr;
|
||||||
break;
|
break;
|
||||||
case AT_PHNUM:
|
case AT_PHNUM:
|
||||||
av->a_un.a_val = phnum;
|
av->a_un.a_val = phnum;
|
||||||
|
|
Loading…
Reference in New Issue