Index: src/examples/thread.c
===================================================================
--- src/examples/thread.c	(revision 8f49a54ffd2ebee0164eb91c530d7625a9d1f910)
+++ src/examples/thread.c	(revision dcb42b8657f59146a4e13e740761ef8af2db06e3)
@@ -29,5 +29,5 @@
 int main(int argc, char* argv[]) {
 
-	unsigned itterations = 10;
+	unsigned itterations = 10u;
 	if(argc == 2) { 
 		int val = ato(argv[1]);
@@ -39,6 +39,6 @@
 
 	{
-		thread(MyThread) thread1 = { (unsigned)1, itterations };
-		thread(MyThread) thread2 = { (unsigned)2, itterations };
+		thread(MyThread) thread1 = { 1u, itterations };
+		thread(MyThread) thread2 = { 2u, itterations };
 	}
 
