diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-03-29 18:43:06 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-03-29 18:43:06 -0700 |
commit | ab61c641c21abaf58eda5198019db83657beb699 (patch) | |
tree | d5a0060bbaa9599121fdf6e726021e9e97639fa0 /sysdeps/mach/hurd | |
parent | bc58236c652761240fbe52f946f4a5efdd503fab (diff) | |
download | glibc-ab61c641c21abaf58eda5198019db83657beb699.tar.gz glibc-ab61c641c21abaf58eda5198019db83657beb699.tar.xz glibc-ab61c641c21abaf58eda5198019db83657beb699.zip |
Fix typos from last patch.
Diffstat (limited to 'sysdeps/mach/hurd')
-rw-r--r-- | sysdeps/mach/hurd/dl-sysdep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/mach/hurd/dl-sysdep.c b/sysdeps/mach/hurd/dl-sysdep.c index f87b6e07dc..6f2787456f 100644 --- a/sysdeps/mach/hurd/dl-sysdep.c +++ b/sysdeps/mach/hurd/dl-sysdep.c @@ -117,7 +117,7 @@ ElfW(Addr) _dl_sysdep_start (void **start_argptr, void (*dl_main) (const ElfW(Phdr) *phdr, ElfW(Word) phent, ElfW(Addr) *user_entry, - ElfW(auxv_t) *auxv))) + ElfW(auxv_t) *auxv)) { void go (intptr_t *argdata) { @@ -198,7 +198,7 @@ unfmh(); /* XXX */ up and leave us to transfer control to USER_ENTRY. */ (*dl_main) ((const ElfW(Phdr) *) _dl_hurd_data->phdr, _dl_hurd_data->phdrsz / sizeof (ElfW(Phdr)), - &_dl_hurd_data->user_entry, NULLy); + &_dl_hurd_data->user_entry, NULL); /* The call above might screw a few things up. |