summaryrefslogtreecommitdiffstats
path: root/staptree.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'staptree.cxx')
-rw-r--r--staptree.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/staptree.cxx b/staptree.cxx
index eb811e49..843f96b7 100644
--- a/staptree.cxx
+++ b/staptree.cxx
@@ -220,8 +220,8 @@ void post_crement::print (ostream& o)
void ternary_expression::print (ostream& o)
{
- o << "(" << *cond << ") ? ("
- << *truevalue << ") : ("
+ o << "(" << *cond << ")?("
+ << *truevalue << "):("
<< *falsevalue << ")";
}