Index: uspace/lib/c/include/adt/hash.h
===================================================================
--- uspace/lib/c/include/adt/hash.h	(revision 30f1a25ef3be685966ce1377e11888810d47aab9)
+++ uspace/lib/c/include/adt/hash.h	(revision 6ccc42491fefdbdac317815349bb416909e2cd69)
@@ -106,6 +106,6 @@
 	 * http://burtleburtle.net/bob/c/lookup3.c
 	 */
-	seed ^= hash + 0x9e3779b9
-		+ ((seed << 5) | (seed >> (sizeof(size_t) * 8 - 5)));
+	seed ^= hash + 0x9e3779b9 +
+	    ((seed << 5) | (seed >> (sizeof(size_t) * 8 - 5)));
 	return seed;
 }
