Index: uspace/app/tester/thread/setjmp1.c
===================================================================
--- uspace/app/tester/thread/setjmp1.c	(revision d5c1051faf4391647834d99babdd4a44ee5d9700)
+++ uspace/app/tester/thread/setjmp1.c	(revision db3c88347157ed2aeffe98179283d9e4e0243edd)
@@ -64,7 +64,7 @@
 {
 	counter = 0;
-	
+
 	const char *err_msg = test_it();
-	
+
 	return err_msg;
 }
Index: uspace/app/tester/thread/thread1.c
===================================================================
--- uspace/app/tester/thread/thread1.c	(revision d5c1051faf4391647834d99babdd4a44ee5d9700)
+++ uspace/app/tester/thread/thread1.c	(revision db3c88347157ed2aeffe98179283d9e4e0243edd)
@@ -45,8 +45,8 @@
 {
 	thread_detach(thread_get_id());
-	
+
 	while (atomic_get(&finish))
 		thread_usleep(100000);
-	
+
 	atomic_inc(&threads_finished);
 }
@@ -56,8 +56,8 @@
 	unsigned int i;
 	atomic_count_t total = 0;
-	
+
 	atomic_set(&finish, 1);
 	atomic_set(&threads_finished, 0);
-	
+
 	TPRINTF("Creating threads");
 	for (i = 0; i < THREADS; i++) {
@@ -69,9 +69,9 @@
 		total++;
 	}
-	
+
 	TPRINTF("\nRunning threads for %u seconds...", DELAY);
 	thread_sleep(DELAY);
 	TPRINTF("\n");
-	
+
 	atomic_set(&finish, 0);
 	while (atomic_get(&threads_finished) < total) {
@@ -80,5 +80,5 @@
 		thread_sleep(1);
 	}
-	
+
 	return NULL;
 }
