Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
2004-03-08  Andreas Schwab  <schwab@suse.de>

	* sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Don't truncate
	sysinfo pointer value.
  • Loading branch information
Ulrich Drepper committed Mar 9, 2004
1 parent 511676f commit d178aa7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2004-03-08 Andreas Schwab <schwab@suse.de>

* sysdeps/generic/dl-sysdep.c (_dl_sysdep_start): Don't truncate
sysinfo pointer value.

2004-03-08 Paul Eggert <eggert@cs.ucla.edu>

Merge from gnulib. We now assume C89 or better.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/generic/dl-sysdep.c
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ _dl_sysdep_start (void **start_argptr,
# endif
#endif
#ifdef NEED_DL_SYSINFO
ElfW(Word) new_sysinfo = 0;
uintptr_t new_sysinfo = 0;
#endif

__libc_stack_end = DL_STACK_END (start_argptr);
Expand Down

0 comments on commit d178aa7

Please sign in to comment.