diff options
Diffstat (limited to 'runtime/reflection.cc')
| -rw-r--r-- | runtime/reflection.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/reflection.cc b/runtime/reflection.cc index 661012c5d4..f88309baa1 100644 --- a/runtime/reflection.cc +++ b/runtime/reflection.cc @@ -911,7 +911,7 @@ void InvalidReceiverError(ObjPtr<mirror::Object> o, ObjPtr<mirror::Class> c) { // Will need to be fixed if there's cases where it's not. void UpdateReference(Thread* self, jobject obj, ObjPtr<mirror::Object> result) { IndirectRef ref = reinterpret_cast<IndirectRef>(obj); - IndirectRefKind kind = GetIndirectRefKind(ref); + IndirectRefKind kind = IndirectReferenceTable::GetIndirectRefKind(ref); if (kind == kLocal) { self->GetJniEnv()->locals.Update(obj, result); } else if (kind == kHandleScopeOrInvalid) { |