Index: /issm/trunk-jpl/src/c/shared/Elements/PrintArrays.cpp
===================================================================
--- /issm/trunk-jpl/src/c/shared/Elements/PrintArrays.cpp	(revision 15089)
+++ /issm/trunk-jpl/src/c/shared/Elements/PrintArrays.cpp	(revision 15090)
@@ -43,5 +43,8 @@
 	for(int i=0;i<lines;i++){  
 		_printString_("   [ ");
-		for(int j=0;j<cols;j++) _printString_( " " << array[i*cols+j]?1:0);
+		for(int j=0;j<cols;j++){
+			if(array[i*cols+j]) _printString_( " 1");
+			else _printString_( " 0");
+		}
 		_printLine_(" ]");
 	}  
