Index: uspace/lib/c/generic/adt/hash_table.c
===================================================================
--- uspace/lib/c/generic/adt/hash_table.c	(revision ddb844e7f3c7c26ca821db9add6e4c048aaf9a7b)
+++ uspace/lib/c/generic/adt/hash_table.c	(revision 1483981d7b7ed0a76568358cb7506faba072c4e6)
@@ -331,5 +331,5 @@
 }
 
-/** Removes an item already present in the table. The item must be in the table.*/
+/** Removes an item already present in the table. The item must be in the table. */
 void hash_table_remove_item(hash_table_t *h, ht_link_t *item)
 {
@@ -393,5 +393,5 @@
 }
 
-/** Allocates and initializes the desired number of buckets. True if successful.*/
+/** Allocates and initializes the desired number of buckets. True if successful. */
 static bool alloc_table(size_t bucket_cnt, list_t **pbuckets)
 {
Index: uspace/lib/c/generic/double_to_str.c
===================================================================
--- uspace/lib/c/generic/double_to_str.c	(revision ddb844e7f3c7c26ca821db9add6e4c048aaf9a7b)
+++ uspace/lib/c/generic/double_to_str.c	(revision 1483981d7b7ed0a76568358cb7506faba072c4e6)
@@ -245,5 +245,5 @@
 }
 
-/** Rounds the last digit of buf so that it is closest to the converted number.*/
+/** Rounds the last digit of buf so that it is closest to the converted number. */
 static void round_last_digit(uint64_t rest, uint64_t w_dist, uint64_t delta,
     uint64_t digit_val_diff, char *buf, int len)
Index: uspace/lib/c/generic/getopt.c
===================================================================
--- uspace/lib/c/generic/getopt.c	(revision ddb844e7f3c7c26ca821db9add6e4c048aaf9a7b)
+++ uspace/lib/c/generic/getopt.c	(revision 1483981d7b7ed0a76568358cb7506faba072c4e6)
@@ -56,5 +56,5 @@
 #define PRINT_ERROR	((opterr) && ((*options != ':') \
 				      || (IGNORE_FIRST && options[1] != ':')))
-/*HelenOS Port - POSIXLY_CORRECT is always false */
+/* HelenOS Port - POSIXLY_CORRECT is always false */
 #define IS_POSIXLY_CORRECT 0
 #define PERMUTE         (!IS_POSIXLY_CORRECT && !IGNORE_FIRST)
Index: uspace/lib/c/generic/inet/tcp.c
===================================================================
--- uspace/lib/c/generic/inet/tcp.c	(revision ddb844e7f3c7c26ca821db9add6e4c048aaf9a7b)
+++ uspace/lib/c/generic/inet/tcp.c	(revision 1483981d7b7ed0a76568358cb7506faba072c4e6)
@@ -821,5 +821,5 @@
 
 		if (!ipc_get_imethod(&call)) {
-			/* Hangup*/
+			/* Hangup */
 			async_answer_0(&call, EOK);
 			goto out;
Index: uspace/lib/c/generic/io/printf_core.c
===================================================================
--- uspace/lib/c/generic/io/printf_core.c	(revision ddb844e7f3c7c26ca821db9add6e4c048aaf9a7b)
+++ uspace/lib/c/generic/io/printf_core.c	(revision 1483981d7b7ed0a76568358cb7506faba072c4e6)
@@ -1151,5 +1151,5 @@
 		}
 	} else {
-		/* Convert to get the decimal exponent and digit count.*/
+		/* Convert to get the decimal exponent and digit count. */
 		len = double_to_short_str(val, buf, buf_size, &dec_exp);
 		assert(0 < len);
Index: uspace/lib/c/generic/rtld/symbol.c
===================================================================
--- uspace/lib/c/generic/rtld/symbol.c	(revision ddb844e7f3c7c26ca821db9add6e4c048aaf9a7b)
+++ uspace/lib/c/generic/rtld/symbol.c	(revision 1483981d7b7ed0a76568358cb7506faba072c4e6)
@@ -68,5 +68,5 @@
 	elf_symbol_t *s, *sym;
 	elf_word nbucket;
-	/*elf_word nchain;*/
+	/* elf_word nchain; */
 	elf_word i;
 	char *s_name;
@@ -77,5 +77,5 @@
 	sym_table = m->dyn.sym_tab;
 	nbucket = m->dyn.hash[0];
-	/*nchain = m->dyn.hash[1]; XXX Use to check HT range*/
+	/* nchain = m->dyn.hash[1]; XXX Use to check HT range */
 
 	bucket = elf_hash((unsigned char *)name) % nbucket;
