summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
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 47a5cd0c..a1e82158 100644
--- a/staptree.cxx
+++ b/staptree.cxx
@@ -458,7 +458,7 @@ void probe::printsig (ostream& o) const
{
for (unsigned i=0; i<locations.size(); i++)
{
- o << (i>0 ? ", " : "");
+ if (i > 0) o << "," << endl;
locations[i]->print (o);
}
}