Index: tests/concurrent/examples/gortn.cfa
===================================================================
--- tests/concurrent/examples/gortn.cfa	(revision 3aa1d2274e31c4a973f17918cfb7aa66460da003)
+++ tests/concurrent/examples/gortn.cfa	(revision 9504a8969e7d1bb7042a4cf7d786d6db2fbe2d39)
@@ -10,6 +10,6 @@
 // Created On       : Wed Feb 20 08:02:37 2019
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Wed Feb 20 08:35:55 2019
-// Update Count     : 3
+// Last Modified On : Fri Jun 21 08:25:03 2019
+// Update Count     : 4
 // 
 
@@ -18,12 +18,12 @@
 
 struct Msg { int i, j; };
-thread Gortn { int i;  float f;  Msg m; };
-void ^?{}( Gortn & mutex ) {}
-void mem1( Gortn & mutex gortn, int i ) { gortn.i = i; }
-void mem2( Gortn & mutex gortn, float f ) { gortn.f = f; }
-void mem3( Gortn & mutex gortn, Msg m ) { gortn.m = m; }
+thread GoRtn { int i;  float f;  Msg m; };
+void ^?{}( GoRtn & mutex ) {}
+void mem1( GoRtn & mutex gortn, int i ) { gortn.i = i; }
+void mem2( GoRtn & mutex gortn, float f ) { gortn.f = f; }
+void mem3( GoRtn & mutex gortn, Msg m ) { gortn.m = m; }
 
-void main( Gortn & gortn ) with( gortn ) {
-	for ( ;; ) {
+void main( GoRtn & gortn ) with( gortn ) {
+	for () {
 		waitfor( mem1, gortn ) sout | i;
 		or waitfor( mem2, gortn ) sout | f;
@@ -33,5 +33,5 @@
 }
 int main() {
-	Gortn gortn;										// start thread
+	GoRtn gortn;										// start thread
 	mem1( gortn, 0 );
 	mem2( gortn, 2.5 );
