diff options
author | wcohen <wcohen> | 2007-06-26 20:55:27 +0000 |
---|---|---|
committer | wcohen <wcohen> | 2007-06-26 20:55:27 +0000 |
commit | 9858f23c4fe3856055e0ded2019d17e4a873091a (patch) | |
tree | 077652fb96fe2329f21d10464f91c76ce2c577af /staptree.cxx | |
parent | c44d44bf713c0461d91b887b9825987136e34509 (diff) | |
download | systemtap-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.cxx | 2 |
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 () |