Index: translator/SynTree/CompoundStmt.cc
===================================================================
--- translator/SynTree/CompoundStmt.cc	(revision c11e31cbaeeeb0709ef952223453f301da13d515)
+++ translator/SynTree/CompoundStmt.cc	(revision 4bf529812249ca5fe41f98e56debf210638aa7e9)
@@ -14,25 +14,18 @@
 using std::endl;
 
-CompoundStmt::CompoundStmt( std::list<Label> labels )
-    : Statement( labels )
-{
+CompoundStmt::CompoundStmt( std::list<Label> labels ) : Statement( labels ) {
 }
 
-CompoundStmt::CompoundStmt( const CompoundStmt &other )
-    : Statement( other )
-{
+CompoundStmt::CompoundStmt( const CompoundStmt &other ) : Statement( other ) {
     cloneAll( other.kids, kids );
 }
 
-CompoundStmt::~CompoundStmt()
-{
+CompoundStmt::~CompoundStmt() {
     deleteAll( kids );
 }
 
-void 
-CompoundStmt::print( std::ostream &os, int indent )
-{
-    os << "\r" << string(indent, ' ') << "CompoundStmt Statement" << endl ;
-    printAll( kids, os, indent + 4 );
+void CompoundStmt::print( std::ostream &os, int indent ) {
+    os << "\r" << string(indent, ' ') << "CompoundStmt" << endl ;
+    printAll( kids, os, indent+2 );
 }
 
