summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
authorwcohen <wcohen>2007-06-26 20:55:27 +0000
committerwcohen <wcohen>2007-06-26 20:55:27 +0000
commit9858f23c4fe3856055e0ded2019d17e4a873091a (patch)
tree077652fb96fe2329f21d10464f91c76ce2c577af /staptree.cxx
parentc44d44bf713c0461d91b887b9825987136e34509 (diff)
downloadsystemtap-steved-9858f23c4fe3856055e0ded2019d17e4a873091a.tar.gz
systemtap-steved-9858f23c4fe3856055e0ded2019d17e4a873091a.tar.xz
systemtap-steved-9858f23c4fe3856055e0ded2019d17e4a873091a.zip
Remove stray "\n" from probe_point::print.
Diffstat (limited to 'staptree.cxx')
-rw-r--r--staptree.cxx2
1 files changed, 1 insertions, 1 deletions
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 ()