File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 03f0932a6db65859292fb26280dbcb32db392a92
2
+ refs/heads/master: 82935c2d17a8afd494699da5bea85b578c0d58c3
Original file line number Diff line number Diff line change @@ -71,10 +71,11 @@ dump_origin(rust_task *task, void *ptr) {
71
71
std::cerr << " Try again with RUST_TRACK_ORIGINS=1." << std::endl;
72
72
} else if (task->debug .origins .find (ptr) == task->debug .origins .end ()) {
73
73
std::cerr << " Pointer " << std::hex << (uintptr_t )ptr <<
74
- " does not have a tracked origin." ;
74
+ " does not have a tracked origin." << std::endl ;
75
75
} else {
76
- std::cerr << " Origin of pointer " << std::hex << " :" << std::endl <<
77
- task->debug .origins [ptr];
76
+ std::cerr << " Origin of pointer " << std::hex << (uintptr_t )ptr <<
77
+ " :" << std::endl << task->debug .origins [ptr] <<
78
+ std::endl;
78
79
}
79
80
}
80
81
You can’t perform that action at this time.
0 commit comments