Index: tests/tuple/tupleAssign.cfa
===================================================================
--- tests/tuple/tupleAssign.cfa	(revision 0df64dee588e2c92221f20ccc004809784e3285b)
+++ tests/tuple/tupleAssign.cfa	(revision d31bb833ae6273b89205509b3fb735267498f463)
@@ -55,8 +55,8 @@
 		[t, x, d, i, c, x] = (double)94.12;
 		printf( "d=%lg i=%d c=%c t=[%d, %lg, %d]\n", d, i, (int)c, t );
-		sout | "d=" | d | "i=" | i | "c=" | c | ' ' | "t=[" | t | "]";
+		sout | "d=" | d | "i=" | i | "c=" | (char)c | ' ' | "t=[" | t | "]";
 		[x, c, i, d, x, t] = (double)-94.12;
 		printf( "d=%lg i=%d c=%c t=[%d, %lg, %d]\n", d, i, c, t );
-		sout | "d=" | d | "i=" | i | "c=" | c | ' ' | "t=[" | t | "]";
+		sout | "d=" | d | "i=" | i | "c=" | (char)c | ' ' | "t=[" | t | "]";
 	}
 }
