diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2010-05-12 10:05:59 -0700 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2010-05-12 10:05:59 -0700 |
commit | f4394458301909a83b7ee7f3b436c038b7235ea8 (patch) | |
tree | e2647ebf9aa7491c5cb3a96fb00af61ab89f1eae /linker | |
parent | bb7928ccdae0cc5766f290e18ab14b07d80c6912 (diff) | |
download | bionic-f4394458301909a83b7ee7f3b436c038b7235ea8.zip bionic-f4394458301909a83b7ee7f3b436c038b7235ea8.tar.gz bionic-f4394458301909a83b7ee7f3b436c038b7235ea8.tar.bz2 |
fix build
Change-Id: I243c98e20a250e0d40d481f16af481ff070219fd
Diffstat (limited to 'linker')
-rw-r--r-- | linker/linker.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linker/linker.c b/linker/linker.c index e1f2792..5e04e24 100644 --- a/linker/linker.c +++ b/linker/linker.c @@ -469,7 +469,7 @@ _do_lookup(soinfo *si, const char *name, unsigned *base) /* Next, look for it in the preloads list */ for(i = 0; preloads[i] != NULL; i++) { lsi = preloads[i]; - s = _do_lookup_in_so(lsi, name, &elf_hash); + s = _elf_lookup(lsi, elf_hash, name); if(s != NULL) goto done; } |