Index: /issm/trunk/src/c/shared/Numerics/BrentSearch.cpp
===================================================================
--- /issm/trunk/src/c/shared/Numerics/BrentSearch.cpp	(revision 83)
+++ /issm/trunk/src/c/shared/Numerics/BrentSearch.cpp	(revision 84)
@@ -218,9 +218,9 @@
 		//Stop the optimization?
 		if (sqrt(pow(xbest-xm,2)) < (tol2-0.5*(xmax-xmin))){
-			_printf_("\nOptimization terminated:\nthe current x satisfies the termination criteria using 'tolx' of %g \n", tolerance);
+			_printf_("      %s%g\n","optimization terminated: the current x satisfies the termination criteria using 'tolx' of" ,tolerance);
 			loop=0;
 		}
 		else if (iter>=maxiter){
-			_printf_("\nExiting: Maximum number of iterations has been exceeded  - increase 'maxiter'\n");
+			_printf_("      %s\n","exiting: Maximum number of iterations has been exceeded  - increase 'maxiter'\n");
 			loop=0;
 		}
