Index: uspace/lib/c/generic/mem.c
===================================================================
--- uspace/lib/c/generic/mem.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/lib/c/generic/mem.c	(revision 6413967015f267b604e85eb4c9a5f071af52a1b0)
@@ -54,5 +54,6 @@
 	word_size = sizeof(unsigned long);
 	fill = word_size - ((uintptr_t) dest & (word_size - 1));
-	if (fill > n) fill = n;
+	if (fill > n)
+		fill = n;
 
 	pb = dest;
@@ -64,5 +65,6 @@
 	/* Compute remaining size. */
 	n -= fill;
-	if (n == 0) return dest;
+	if (n == 0)
+		return dest;
 
 	n_words = n / word_size;
@@ -93,5 +95,5 @@
 struct along {
 	unsigned long n;
-} __attribute__ ((packed));
+} __attribute__((packed));
 
 static void *unaligned_memcpy(void *dst, const void *src, size_t n)
@@ -133,5 +135,5 @@
 	if (((uintptr_t) dst & (word_size - 1)) !=
 	    ((uintptr_t) src & (word_size - 1)))
- 		return unaligned_memcpy(dst, src, n);
+		return unaligned_memcpy(dst, src, n);
 
 	/*
@@ -143,5 +145,6 @@
 	mod = (uintptr_t) dst & (word_size - 1);
 	fill = word_size - mod;
-	if (fill > n) fill = n;
+	if (fill > n)
+		fill = n;
 
 	/* Copy the initial segment. */
@@ -157,5 +160,6 @@
 
 	n -= fill;
-	if (n == 0) return dst;
+	if (n == 0)
+		return dst;
 
 	/* Pointers to aligned segment. */
