Index: tests/.expect/nested_function.x64.txt
===================================================================
--- tests/.expect/nested_function.x64.txt	(revision 7bc84b8b7820d2c4950d341b0aff41c7071d3f95)
+++ tests/.expect/nested_function.x64.txt	(revision 7bc84b8b7820d2c4950d341b0aff41c7071d3f95)
@@ -0,0 +1,1 @@
+total 80
Index: tests/concurrent/barrier/generation.cfa
===================================================================
--- tests/concurrent/barrier/generation.cfa	(revision 9fce2572b22753fff14164bc36f6a3b14e74ae49)
+++ tests/concurrent/barrier/generation.cfa	(revision 7bc84b8b7820d2c4950d341b0aff41c7071d3f95)
@@ -37,5 +37,5 @@
 		for(c; 'A' ~= 'Z') {
 			// Yield for chaos
-			yield( (unsigned)prng(this, 10) );
+			yield( prng(this, 10) );
 
 			// Print the generation, no newline because
@@ -43,5 +43,5 @@
 
 			// Yield again for more chaos
-			yield( (unsigned)prng(this, 10) );
+			yield( prng(this, 10) );
 
 			// Block on the barrier
Index: tests/concurrent/barrier/order.cfa
===================================================================
--- tests/concurrent/barrier/order.cfa	(revision 9fce2572b22753fff14164bc36f6a3b14e74ae49)
+++ tests/concurrent/barrier/order.cfa	(revision 7bc84b8b7820d2c4950d341b0aff41c7071d3f95)
@@ -37,5 +37,5 @@
 	for(l; NUM_LAPS) {
 		// Yield for chaos
-		yield( (unsigned)prng(this, 10) );
+		yield( prng(this, 10) );
 
 		// Block and what order we arrived
Index: tests/concurrent/once.cfa
===================================================================
--- tests/concurrent/once.cfa	(revision 9fce2572b22753fff14164bc36f6a3b14e74ae49)
+++ tests/concurrent/once.cfa	(revision 7bc84b8b7820d2c4950d341b0aff41c7071d3f95)
@@ -30,5 +30,5 @@
 
 		// sometime yields
-		yield( (unsigned)prng(this, 3) );
+		yield( prng(this, 3) );
 	}
 }
Index: tests/io/away_fair.cfa
===================================================================
--- tests/io/away_fair.cfa	(revision 9fce2572b22753fff14164bc36f6a3b14e74ae49)
+++ tests/io/away_fair.cfa	(revision 7bc84b8b7820d2c4950d341b0aff41c7071d3f95)
@@ -67,5 +67,5 @@
 		#endif
 
-		yield( (unsigned)prng( this, 15 ) );
+		yield( prng( this, 15 ) );
 
 		#if CFA_HAVE_LINUX_IO_URING_H
Index: tests/io/comp_basic.cfa
===================================================================
--- tests/io/comp_basic.cfa	(revision 9fce2572b22753fff14164bc36f6a3b14e74ae49)
+++ tests/io/comp_basic.cfa	(revision 7bc84b8b7820d2c4950d341b0aff41c7071d3f95)
@@ -58,5 +58,5 @@
 		block( globals.bar );
 
-		yield( (unsigned)prng( this, 15 ) );
+		yield( prng( this, 15 ) );
 
 		unsigned i = __atomic_add_fetch( &counter, 1, __ATOMIC_SEQ_CST );
Index: tests/io/comp_fair.cfa
===================================================================
--- tests/io/comp_fair.cfa	(revision 9fce2572b22753fff14164bc36f6a3b14e74ae49)
+++ tests/io/comp_fair.cfa	(revision 7bc84b8b7820d2c4950d341b0aff41c7071d3f95)
@@ -78,5 +78,5 @@
 		block( globals.bar );
 
-		yield( (unsigned)prng( this, 15 ) );
+		yield( prng( this, 15 ) );
 
 		unsigned i = __atomic_add_fetch( &counter, 1, __ATOMIC_SEQ_CST );
