diff options
Diffstat (limited to 'runtime/native_stack_dump.cc')
-rw-r--r-- | runtime/native_stack_dump.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/native_stack_dump.cc b/runtime/native_stack_dump.cc index 6b9468d3e1..00ab5771da 100644 --- a/runtime/native_stack_dump.cc +++ b/runtime/native_stack_dump.cc @@ -347,7 +347,7 @@ void DumpNativeStack(std::ostream& os, Locks::mutator_lock_->IsSharedHeld(Thread::Current()) && PcIsWithinQuickCode(current_method, it->pc)) { const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode(); - os << JniLongName(current_method) << "+" + os << current_method->JniLongName() << "+" << (it->pc - reinterpret_cast<uintptr_t>(start_of_code)); } else { os << "???"; |