Index: /issm/trunk/src/c/solutions/transient_core.cpp
===================================================================
--- /issm/trunk/src/c/solutions/transient_core.cpp	(revision 8551)
+++ /issm/trunk/src/c/solutions/transient_core.cpp	(revision 8552)
@@ -65,12 +65,12 @@
 
 		if(isdiagnostic){
-			_printf_(VerboseSolution(),"%s\n","   computing new velocity");
+			_printf_(VerboseSolution(),"   computing new velocity\n");
 			diagnostic_core(femmodel);
 		}
 
 		if(isprognostic){
-			_printf_(VerboseSolution(),"%s\n","   computing new thickness");
+			_printf_(VerboseSolution(),"   computing new thickness\n");
 			prognostic_core(femmodel);
-			_printf_(VerboseSolution(),"%s\n","   updating vertices positions");
+			_printf_(VerboseSolution(),"   updating vertices positions\n");
 			UpdateVertexPositionsx(femmodel->elements, femmodel->nodes,femmodel->vertices,femmodel->loads, femmodel->materials, femmodel->parameters); 
 		}
@@ -78,10 +78,10 @@
 		if (gl_migration!=NoneEnum){
 			if(dim==3) _error_("Grounding line migration not implemented in 3d");
-			_printf_(VerboseSolution(),"%s\n","   computing new grounding line position");
+			_printf_(VerboseSolution(),"   computing new grounding line position\n");
 			GroundingLineMigrationx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters);
 		}
 
 		if(solution_type==TransientSolutionEnum && !control_analysis && (step%output_frequency==0 || time==finaltime)){
-			_printf_(VerboseSolution(),"%s\n","   saving results\n");
+			_printf_(VerboseSolution(),"   saving results\n");
 			InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VxEnum,step,time);
 			InputToResultx(femmodel->elements,femmodel->nodes,femmodel->vertices,femmodel->loads,femmodel->materials,femmodel->parameters,VyEnum,step,time);
@@ -96,5 +96,5 @@
 
 			/*unload results*/
-			_printf_(VerboseSolution(),"%s","   saving temporary results");
+			_printf_(VerboseSolution(),"   saving temporary results\n");
 			OutputResultsx(femmodel->elements, femmodel->nodes, femmodel->vertices, femmodel->loads, femmodel->materials, femmodel->parameters,&femmodel->results,step,time);
 		}
