Skip to content

Commit

Permalink
elf/rtld.c (dl_main) [HAVE_AUX_VECTOR]: Add a cast.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roland McGrath committed Apr 6, 2010
1 parent e5c4259 commit 4dd019e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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>

* po/nl.po: Update from translation team.
Expand Down
2 changes: 1 addition & 1 deletion elf/rtld.c
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,7 @@ of this helper program; chances are you did not intend to run this program.\n\
switch (av->a_type)
{
case AT_PHDR:
av->a_un.a_val = phdr;
av->a_un.a_val = (uintptr_t) phdr;
break;
case AT_PHNUM:
av->a_un.a_val = phnum;
Expand Down

0 comments on commit 4dd019e

Please sign in to comment.