Index: tests/concurrency/cofor.cfa
===================================================================
--- tests/concurrency/cofor.cfa	(revision 9cbdc13d9cce278a2500603b5411d55641c59504)
+++ tests/concurrency/cofor.cfa	(revision 0d41b2e19de49d4b3c93a0edb0c94e41b1fa2dea)
@@ -1,4 +1,3 @@
 #include <cofor.hfa>
-
 
 void add_num( long * total, long val ) { __atomic_fetch_add( total, (long)val, __ATOMIC_SEQ_CST ); }
@@ -8,5 +7,7 @@
     processor p[4];
     long total = 0;
-    COFOR( i, 0, 10, __atomic_fetch_add( &total, i, __ATOMIC_SEQ_CST ); );
+    cofor( i; 10 ) {
+        __atomic_fetch_add( &total, i, __ATOMIC_SEQ_CST );
+    }
     {
         corun;      // does nothing
