Index: src/SynTree/Initializer.cc
===================================================================
--- src/SynTree/Initializer.cc	(revision 4ffdd638467baad09e66da0dfc9fb3e7dd4f9f5a)
+++ src/SynTree/Initializer.cc	(revision a0fdbd51112d9506c6a29aefc759d19bbb0828fe)
@@ -10,5 +10,5 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Rob Schluntz
-// Last Modified On : Tue Apr 26 12:57:34 2016
+// Last Modified On : Tue Apr 26 15:51:35 2016
 // Update Count     : 28
 //
@@ -93,18 +93,21 @@
 
 void ConstructorInit::print( std::ostream &os, int indent ) {
-	os << std::endl << std::string(indent, ' ') << "Constructor initializer: ";
+	os << std::endl << std::string(indent, ' ') << "Constructor initializer: " << std::endl;
 	if ( ctor ) {
-		os << " initially constructed with ";
-		ctor->print( os, indent+2 );
+		os << std::string(indent+2, ' ');
+		os << "initially constructed with ";
+		ctor->print( os, indent+4 );
 	} // if
 
 	if ( dtor ) {
-		os << " destructed with ";
-		dtor->print( os, indent+2 );
+		os << std::string(indent+2, ' ');
+		os << "destructed with ";
+		dtor->print( os, indent+4 );
 	}
 
 	if ( init ) {
-		os << " with fallback C-style initializer: ";
-		init->print( os, indent+2 );
+		os << std::string(indent+2, ' ');
+		os << "with fallback C-style initializer: ";
+		init->print( os, indent+4 );
 	}
 }
