summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--staptree.cxx2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 3472f038..05fe3211 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,9 @@
2007-06-26 William Cohen <wcohen@redhat.com>
+ * staptree.cxx (probe_point::print): Remove stray "\n".
+
+2007-06-26 William Cohen <wcohen@redhat.com>
+
PR 4529
* coveragedb.cxx: New.
* coveragedb.h: New.
diff --git a/staptree.cxx b/staptree.cxx
index 3a50ac14..86ef201b 100644
--- a/staptree.cxx
+++ b/staptree.cxx
@@ -868,7 +868,7 @@ void probe_point::print (ostream& o) const
}
if (optional)
o << "?";
- o << "{" << tok->location << "}\n";
+ o << "{" << tok->location << "}";
}
string probe_point::str ()