From 44ea74531cbf113266607a23339389a70e209d15 Mon Sep 17 00:00:00 2001 From: Tomasz Gorochowik Date: Tue, 31 Dec 2024 18:13:51 +0100 Subject: [PATCH] Move coverage comment to the next field Signed-off-by: Tomasz Gorochowik --- src/VlcTop.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/VlcTop.cpp b/src/VlcTop.cpp index 39963ed6b1..bd0f4652f9 100644 --- a/src/VlcTop.cpp +++ b/src/VlcTop.cpp @@ -127,7 +127,8 @@ void VlcTop::writeInfo(const string& filename) { int point_num = 0; for (const auto& point : sc.points()) { os << "BRDA:" << sc.lineno() << ","; - os << point->comment() << ","; + os << "0,"; + os << point->comment() << "_"; os << point_num << ","; os << point->count() << "\n";