From 90b74fb8671db6f5512821a033e12a6248e5c804 Mon Sep 17 00:00:00 2001 From: Dmitriy Ivanov Date: Thu, 23 Oct 2014 14:34:12 -0700 Subject: [PATCH] Fix mips build Change-Id: Ia2dc2e07740bdbb91ee92bfea459230015fcc99b --- linker/linker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linker/linker.cpp b/linker/linker.cpp index c63ac35bb..f8963b59c 100644 --- a/linker/linker.cpp +++ b/linker/linker.cpp @@ -2281,7 +2281,7 @@ bool soinfo::LinkImage(const soinfo_list_t& local_group, const android_dlextinfo #endif #if defined(__mips__) - if (!mips_relocate_got(this)) { + if (!mips_relocate_got(this, local_group)) { return false; } #endif