Index: translator/ControlStruct/CaseRangeMutator.cc
===================================================================
--- translator/ControlStruct/CaseRangeMutator.cc	(revision 4bf529812249ca5fe41f98e56debf210638aa7e9)
+++ translator/ControlStruct/CaseRangeMutator.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
@@ -117,5 +117,5 @@
 			if ( ch_lo > ch_hi ) { char t=ch_lo; ch_lo=ch_hi; ch_hi=t; }
 
-			for( char c = ch_lo; c <=  ch_hi; c++ ){
+			for ( char c = ch_lo; c <=  ch_hi; c++ ){
 			    Type::Qualifiers q;
 			    Constant cnst( new BasicType(q, BasicType::Char),
@@ -154,5 +154,5 @@
 		  if ( i_lo > i_hi ) { int t=i_lo; i_lo=i_hi; i_hi=t; }
 
-		  for( int c = i_lo; c <=  i_hi; c++ ){
+		  for ( int c = i_lo; c <=  i_hi; c++ ){
 		      Type::Qualifiers q;
 		      Constant cnst( new BasicType(q, ty_hi->get_kind()), // figure can't hurt (used to think in positives)
Index: translator/ControlStruct/MLEMutator.cc
===================================================================
--- translator/ControlStruct/MLEMutator.cc	(revision 4bf529812249ca5fe41f98e56debf210638aa7e9)
+++ translator/ControlStruct/MLEMutator.cc	(revision 0dd3a2faa6372da8704ff969a8bb37b5d340f350)
@@ -23,5 +23,5 @@
 	    *k = (*k)->acceptMutator(*this);
 
-	    if ( !get_breakLabel().empty() ) {
+	    if ( ! get_breakLabel().empty() ) {
 		std::list< Statement * >::iterator next = k; next++;
 		if ( next == kids.end() ) {
@@ -98,5 +98,5 @@
 
 	Label newLabel;
-	switch( branchStmt->get_type() ) {
+	switch ( branchStmt->get_type() ) {
 	  case BranchStmt::Break:
 	    if ( check->get_breakExit() != "" )
