diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | staptree.cxx | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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 () |