summaryrefslogtreecommitdiff
path: root/ldso/ldso/i386/dl-sysdep.h
diff options
context:
space:
mode:
Diffstat (limited to 'ldso/ldso/i386/dl-sysdep.h')
-rw-r--r--ldso/ldso/i386/dl-sysdep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ldso/ldso/i386/dl-sysdep.h b/ldso/ldso/i386/dl-sysdep.h
index b0edee369..ecc7b0b4c 100644
--- a/ldso/ldso/i386/dl-sysdep.h
+++ b/ldso/ldso/i386/dl-sysdep.h
@@ -59,11 +59,11 @@ elf_machine_load_address (void)
/* It doesn't matter what variable this is, the reference never makes
it to assembly. We need a dummy reference to some global variable
via the GOT to make sure the compiler initialized %ebx in time. */
- extern int _dl_argc;
+ extern int _dl_errno;
Elf32_Addr addr;
asm ("leal _dl_boot@GOTOFF(%%ebx), %0\n"
"subl _dl_boot@GOT(%%ebx), %0"
- : "=r" (addr) : "m" (_dl_argc) : "cc");
+ : "=r" (addr) : "m" (_dl_errno) : "cc");
return addr;
}