diff options
Diffstat (limited to 'runtime/runtime_common.h')
| -rw-r--r-- | runtime/runtime_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/runtime_common.h b/runtime/runtime_common.h index 925594ef29..ec08907dae 100644 --- a/runtime/runtime_common.h +++ b/runtime/runtime_common.h @@ -42,7 +42,7 @@ struct Backtrace { void Dump(std::ostream& os) const { // This is a backtrace from a crash, do not skip any frames in case the // crash is in the unwinder itself. - DumpNativeStack(os, GetTid(), nullptr, "\t", nullptr, raw_context_, false); + DumpNativeStack(os, GetTid(), "\t", nullptr, raw_context_, false); } private: // Stores the context of the signal that was unexpected and will terminate the runtime. The |