Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion stack_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ int __attribute__((noinline)) backtrace(char* stacks[], int stack_len) {
if (p == NULL) {
return n;
}
sprintf(p, "#%-2d" PRIxPTR "%s + 0x%" PRIxPTR "\n",
sprintf(p, "#%-2d %s + 0x%" PRIxPTR "\n",
n,
name,
static_cast<uintptr_t>(off));
Expand Down