Index: tests/heap.cfa
===================================================================
--- tests/heap.cfa	(revision 25cbd99937e781b66acabb0012288112de646130)
+++ tests/heap.cfa	(revision 2ff42f428857047f798298c053b9820498219db9)
@@ -10,6 +10,6 @@
 // Created On       : Tue Nov  6 17:54:56 2018
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Aug  3 16:40:06 2020
-// Update Count     : 54
+// Last Modified On : Tue Aug  4 06:36:17 2020
+// Update Count     : 56
 // 
 
@@ -354,5 +354,5 @@
 	for ( size_t a = libAlign() + libAlign(); a <= limit; a += a ) { // generate powers of 2
 		// initial N byte allocation
-		char *area = (char *)cmemalign( a, 1, amount );	// aligned N-byte allocation
+		char * area = (char *)cmemalign( a, 1, amount ); // aligned N-byte allocation
 		//sout | alignments[a] | area | endl;
 		if ( (size_t)area % a != 0 || malloc_alignment( area ) != a ) { // check for initial alignment
@@ -370,5 +370,5 @@
 			//sout | i | area | endl;
 			if ( (size_t)area % a * 2 != 0 || malloc_alignment( area ) != a * 2 ) { // check for initial alignment
-				abort( "cmemalign/realloc with align/free bad alignment %p %jd %jd", area, malloc_alignment( area ), a * 2 );
+				abort( "cmemalign/realloc with align/free bad alignment %p %zd %zd", area, malloc_alignment( area ), a * 2 );
 			} // if
 			if ( area[s - 1] != '\0' || area[s - 1] != '\0' ||
