Index: uspace/lib/c/include/adt/list.h
===================================================================
--- uspace/lib/c/include/adt/list.h	(revision feeac0d8cd6e0ce736779bc5f1dc701c5cf42ba6)
+++ uspace/lib/c/include/adt/list.h	(revision a501e22cfdc3a2c5c6f792bc5d5dcb4b3fdf012f)
@@ -68,5 +68,5 @@
 
 #define list_foreach(list, member, itype, iterator) \
-	for (itype *iterator = NULL; iterator == NULL; iterator =(itype *)1) \
+	for (itype *iterator = NULL; iterator == NULL; iterator = (itype *) 1) \
 	    for (link_t *_link = (list).head.next; \
 	    iterator = list_get_instance(_link, itype, member), \
@@ -74,5 +74,5 @@
 
 /** Unlike list_foreach(), allows removing items while traversing a list.
- * 
+ *
  * @code
  * list_t mylist;
@@ -249,4 +249,5 @@
  *
  * @return Next item or NULL if @a link is the last item.
+ *
  */
 static inline link_t *list_next(link_t *link, const list_t *list)
@@ -261,4 +262,5 @@
  *
  * @return Previous item or NULL if @a link is the first item.
+ *
  */
 static inline link_t *list_prev(link_t *link, const list_t *list)
