From 9858f23c4fe3856055e0ded2019d17e4a873091a Mon Sep 17 00:00:00 2001 From: wcohen Date: Tue, 26 Jun 2007 20:55:27 +0000 Subject: Remove stray "\n" from probe_point::print. --- ChangeLog | 4 ++++ staptree.cxx | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 3472f038..05fe3211 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2007-06-26 William Cohen + + * staptree.cxx (probe_point::print): Remove stray "\n". + 2007-06-26 William Cohen PR 4529 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 () -- cgit