Index: tests/io/away_fair.cfa
===================================================================
--- tests/io/away_fair.cfa	(revision d2ad1518036350cdec12ea05fd951c3f04312459)
+++ 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 d2ad1518036350cdec12ea05fd951c3f04312459)
+++ 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 d2ad1518036350cdec12ea05fd951c3f04312459)
+++ 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 );
