Skip to content

Commit 7091127

Browse files
committed
fix formatting
1 parent 836fb02 commit 7091127

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

process.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -695,11 +695,11 @@ Process::dumpStackText(std::ostream &os, const Lwp &lwp)
695695
os << std::dec;
696696
if (lwp.threadInfo.has_value()) {
697697
auto &ti = *lwp.threadInfo;
698-
os << "lwp: " << (void *)ti.ti_tid
698+
os << "thread: " << (void *)ti.ti_tid
699699
<< ", type: " << ti.ti_type
700-
;
700+
<< ", ";
701701
}
702-
os << ", lwp: " << lwp.id;
702+
os << "lwp: " << lwp.id;
703703
if (lwp.name.has_value())
704704
os << ", name: " << *lwp.name;
705705
os << "\n";

0 commit comments

Comments
 (0)