Index: test/thread/thread1/test.c
===================================================================
--- test/thread/thread1/test.c	(revision 9c0a9b3057ce928cdefd80ab4215be954d01adb1)
+++ test/thread/thread1/test.c	(revision 10c071e7eba787c7e29f0c9d920979d81ea32e19)
@@ -38,8 +38,5 @@
 #include <arch.h>
 
-
-
 #define THREADS 5
-
 
 static void thread(void *data)
@@ -52,6 +49,4 @@
 }
 
-
-
 void test(void)
 {
@@ -59,8 +54,5 @@
 	int i;
 
-
-
-	for (i=0; i<THREADS; i++) 
-	{  
+	for (i=0; i<THREADS; i++) {  
 		if (!(t = thread_create(thread, NULL, TASK, 0)))
 			panic("could not create thread\n");
@@ -68,4 +60,3 @@
 	}
 	printf("ok\n");
-	
 }
