Index: uspace/lib/c/generic/assert.c
===================================================================
--- uspace/lib/c/generic/assert.c	(revision e8d3c6f55fdb9a5a1e2e4d95612cb04c4ea82652)
+++ uspace/lib/c/generic/assert.c	(revision 34e1206ec4dc79f0592077e3ee270fba91d1eb9d)
@@ -48,5 +48,5 @@
 	kio_printf("Assertion failed (%s) in file \"%s\", line %u.\n",
 	    cond, file, line);
-	
+
 	/* Sometimes we know in advance that regular printf() would likely fail. */
 	abort();
@@ -60,5 +60,5 @@
 	kio_printf("Assertion failed (%s) in file \"%s\", line %u.\n",
 	    cond, file, line);
-	
+
 	/*
 	 * Check if this is a nested or parallel assert.
@@ -66,5 +66,5 @@
 	if (atomic_postinc(&failed_asserts))
 		abort();
-	
+
 	/*
 	 * Attempt to print the message to standard output and display
@@ -75,5 +75,5 @@
 	    cond, file, line);
 	stacktrace_print();
-	
+
 	abort();
 }
