diff options
author | Roland McGrath <roland@hack.frob.com> | 2013-03-01 14:44:44 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2013-03-01 14:44:44 -0800 |
commit | 7775448e570a2bd77886548fc3e9af5007814a8b (patch) | |
tree | 72e6ee8881f2d600d6f89cc02c55072246e63ea8 /elf/setup-vdso.h | |
parent | 4e9b5995775c99e029ed4003aaddb88bfbf8e2cd (diff) | |
download | glibc-7775448e570a2bd77886548fc3e9af5007814a8b.tar glibc-7775448e570a2bd77886548fc3e9af5007814a8b.tar.gz glibc-7775448e570a2bd77886548fc3e9af5007814a8b.tar.bz2 glibc-7775448e570a2bd77886548fc3e9af5007814a8b.zip |
Fix NEED_DL_SYSINFO_DSO conditionals.
Diffstat (limited to 'elf/setup-vdso.h')
-rw-r--r-- | elf/setup-vdso.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/setup-vdso.h b/elf/setup-vdso.h index 1878fae151..a98dfeca33 100644 --- a/elf/setup-vdso.h +++ b/elf/setup-vdso.h @@ -20,7 +20,7 @@ static inline void __attribute__ ((always_inline)) setup_vdso (struct link_map *main_map __attribute__ ((unused)), struct link_map ***first_preload __attribute__ ((unused))) { -#if defined NEED_DL_SYSINFO || defined NEED_DL_SYSINFO_DSO +#ifdef NEED_DL_SYSINFO_DSO if (GLRO(dl_sysinfo_dso) == NULL) return; |