Index: uspace/app/tester/float/float1.c
===================================================================
--- uspace/app/tester/float/float1.c	(revision d5c1051faf4391647834d99babdd4a44ee5d9700)
+++ uspace/app/tester/float/float1.c	(revision 0c793e2e9c4358a2bb2521d35eb36b273cf0283b)
@@ -52,10 +52,10 @@
 		double e = 0;
 		double f = 1;
-		
+
 		for (double d = 1; e != le; d *= f, f += 1) {
 			le = e;
 			e = e + 1 / d;
 		}
-		
+
 		if ((uint32_t) (e * PRECISION) != E_10E8) {
 			atomic_inc(&threads_fault);
@@ -63,5 +63,5 @@
 		}
 	}
-	
+
 	atomic_inc(&threads_finished);
 }
@@ -70,8 +70,8 @@
 {
 	atomic_count_t total = 0;
-	
+
 	atomic_set(&threads_finished, 0);
 	atomic_set(&threads_fault, 0);
-	
+
 	TPRINTF("Creating threads");
 	for (unsigned int i = 0; i < THREADS; i++) {
@@ -80,11 +80,11 @@
 			break;
 		}
-		
+
 		TPRINTF(".");
 		total++;
 	}
-	
+
 	TPRINTF("\n");
-	
+
 	while (atomic_get(&threads_finished) < total) {
 		TPRINTF("Threads left: %" PRIua "\n",
@@ -92,8 +92,8 @@
 		thread_sleep(1);
 	}
-	
+
 	if (atomic_get(&threads_fault) == 0)
 		return NULL;
-	
+
 	return "Test failed";
 }
Index: uspace/app/tester/float/softfloat1.c
===================================================================
--- uspace/app/tester/float/softfloat1.c	(revision d5c1051faf4391647834d99babdd4a44ee5d9700)
+++ uspace/app/tester/float/softfloat1.c	(revision 0c793e2e9c4358a2bb2521d35eb36b273cf0283b)
@@ -100,8 +100,8 @@
 	if (a < b)
 		return -1;
-	
+
 	if (a > b)
 		return 1;
-	
+
 	return 0;
 }
@@ -111,8 +111,8 @@
 	if (a < b)
 		return -1;
-	
+
 	if (a > b)
 		return 1;
-	
+
 	return 0;
 }
@@ -122,9 +122,9 @@
 {
 	uint_to_double_op_t op = (uint_to_double_op_t) f;
-	
+
 	double c;
 	double sc;
 	op(uop_a[i], &c, &sc);
-	
+
 	*pic = (cmptype_t) (c * PRECISION);
 	*pisc = (cmptype_t) (sc * PRECISION);
@@ -135,9 +135,9 @@
 {
 	double_to_uint_op_t op = (double_to_uint_op_t) f;
-	
+
 	unsigned int c;
 	unsigned int sc;
 	op(dop_a[i], &c, &sc);
-	
+
 	*pic = (cmptype_t) c;
 	*pisc = (cmptype_t) sc;
@@ -148,9 +148,9 @@
 {
 	float_binary_op_t op = (float_binary_op_t) f;
-	
+
 	float c;
 	float sc;
 	op(fop_a[i], fop_a[j], &c, &sc);
-	
+
 	*pic = (cmptype_t) (c * PRECISION);
 	*pisc = (cmptype_t) (sc * PRECISION);
@@ -161,5 +161,5 @@
 {
 	float_cmp_op_t op = (float_cmp_op_t) f;
-	
+
 	op(dop_a[i], dop_a[j], pis, piss);
 }
@@ -169,9 +169,9 @@
 {
 	double_binary_op_t op = (double_binary_op_t) f;
-	
+
 	double c;
 	double sc;
 	op(dop_a[i], dop_a[j], &c, &sc);
-	
+
 	*pic = (cmptype_t) (c * PRECISION);
 	*pisc = (cmptype_t) (sc * PRECISION);
@@ -182,5 +182,5 @@
 {
 	double_cmp_op_t op = (double_cmp_op_t) f;
-	
+
 	op(dop_a[i], dop_a[j], pis, piss);
 }
@@ -189,12 +189,12 @@
 {
 	bool correct = true;
-	
+
 	for (unsigned int i = 0; i < OPERANDS; i++) {
 		cmptype_t ic;
 		cmptype_t isc;
-		
+
 		template(f, i, &ic, &isc);
 		cmptype_t diff = ic - isc;
-		
+
 		if (diff != 0) {
 			TPRINTF("i=%u ic=%" PRIdCMPTYPE " isc=%" PRIdCMPTYPE "\n",
@@ -203,5 +203,5 @@
 		}
 	}
-	
+
 	return correct;
 }
@@ -210,13 +210,13 @@
 {
 	bool correct = true;
-	
+
 	for (unsigned int i = 0; i < OPERANDS; i++) {
 		for (unsigned int j = 0; j < OPERANDS; j++) {
 			cmptype_t ic;
 			cmptype_t isc;
-			
+
 			template(f, i, j, &ic, &isc);
 			cmptype_t diff = ic - isc;
-			
+
 			if (diff != 0) {
 				TPRINTF("i=%u, j=%u ic=%" PRIdCMPTYPE
@@ -226,5 +226,5 @@
 		}
 	}
-	
+
 	return correct;
 }
@@ -275,5 +275,5 @@
 		return;
 	}
-	
+
 	*pc = a / b;
 	*psc = div_float(a, b);
@@ -284,5 +284,5 @@
 {
 	*pis = fcmp(a, b);
-	
+
 	if (is_float_lt(a, b) == -1)
 		*piss = -1;
@@ -320,5 +320,5 @@
 		return;
 	}
-	
+
 	*pc = a / b;
 	*psc = div_double(a, b);
@@ -329,5 +329,5 @@
 {
 	*pis = dcmp(a, b);
-	
+
 	if (is_double_lt(a, b) == -1)
 		*piss = -1;
@@ -343,55 +343,55 @@
 {
 	bool err = false;
-	
+
 	if (!test_template_binary(float_template_binary, float_add_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Float addition failed");
 	}
-	
+
 	if (!test_template_binary(float_template_binary, float_sub_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Float addition failed");
 	}
-	
+
 	if (!test_template_binary(float_template_binary, float_mul_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Float multiplication failed");
 	}
-	
+
 	if (!test_template_binary(float_template_binary, float_div_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Float division failed");
 	}
-	
+
 	if (!test_template_binary(float_compare_template, float_cmp_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Float comparison failed");
 	}
-	
+
 	if (!test_template_binary(double_template_binary, double_add_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Double addition failed");
 	}
-	
+
 	if (!test_template_binary(double_template_binary, double_sub_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Double addition failed");
 	}
-	
+
 	if (!test_template_binary(double_template_binary, double_mul_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Double multiplication failed");
 	}
-	
+
 	if (!test_template_binary(double_template_binary, double_div_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Double division failed");
 	}
-	
+
 	if (!test_template_binary(double_compare_template, double_cmp_operator)) {
 		err = true;
 		TPRINTF("%s\n", "Double comparison failed");
 	}
-	
+
 	if (!test_template_unary(uint_to_double_template,
 	    uint_to_double_operator)) {
@@ -399,5 +399,5 @@
 		TPRINTF("%s\n", "Conversion from unsigned int to double failed");
 	}
-	
+
 	if (!test_template_unary(double_to_uint_template,
 	    double_to_uint_operator)) {
@@ -405,5 +405,5 @@
 		TPRINTF("%s\n", "Conversion from double to unsigned int failed");
 	}
-	
+
 	if (!test_template_unary(double_to_uint_template,
 	    double_to_int_operator)) {
@@ -411,8 +411,8 @@
 		TPRINTF("%s\n", "Conversion from double to signed int failed");
 	}
-	
+
 	if (err)
 		return "Software floating point imprecision";
-	
+
 	return NULL;
 }
