Index: uspace/srv/net/inetsrv/inet_link.c
===================================================================
--- uspace/srv/net/inetsrv/inet_link.c	(revision b752a317bb5dfb454cb227f59a1be5d52d10947d)
+++ uspace/srv/net/inetsrv/inet_link.c	(revision 46189983620887e3f8ca39ca7efaf1c679d38910)
@@ -68,5 +68,5 @@
 
 static addr128_t link_local_node_ip =
-    {0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xfe, 0, 0, 0};
+    { 0xfe, 0x80, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xfe, 0, 0, 0 };
 
 static void inet_link_local_node_ip(addr48_t mac_addr,
Index: uspace/srv/net/inetsrv/inetsrv.c
===================================================================
--- uspace/srv/net/inetsrv/inetsrv.c	(revision b752a317bb5dfb454cb227f59a1be5d52d10947d)
+++ uspace/srv/net/inetsrv/inetsrv.c	(revision 46189983620887e3f8ca39ca7efaf1c679d38910)
@@ -65,5 +65,5 @@
 static inet_naddr_t solicited_node_mask = {
 	.version = ip_v6,
-	.addr6 = {0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01, 0xff, 0, 0, 0},
+	.addr6 = { 0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01, 0xff, 0, 0, 0 },
 	.prefix = 104
 };
@@ -76,5 +76,5 @@
 static inet_addr_t multicast_all_nodes = {
 	.version = ip_v6,
-	.addr6 = {0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01}
+	.addr6 = { 0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01 }
 };
 
@@ -182,5 +182,5 @@
 
 		if (dgram->src.version != ip_v4 ||
-			dgram->dest.version != ip_v4)
+		    dgram->dest.version != ip_v4)
 			return EINVAL;
 
Index: uspace/srv/net/inetsrv/ndp.c
===================================================================
--- uspace/srv/net/inetsrv/ndp.c	(revision b752a317bb5dfb454cb227f59a1be5d52d10947d)
+++ uspace/srv/net/inetsrv/ndp.c	(revision 46189983620887e3f8ca39ca7efaf1c679d38910)
@@ -49,5 +49,5 @@
 
 static addr128_t solicited_node_ip =
-    {0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01, 0xff, 0, 0, 0};
+    { 0xff, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x01, 0xff, 0, 0, 0 };
 
 /** Compute solicited node IPv6 multicast address from target IPv6 address
Index: uspace/srv/net/tcp/iqueue.c
===================================================================
--- uspace/srv/net/tcp/iqueue.c	(revision b752a317bb5dfb454cb227f59a1be5d52d10947d)
+++ uspace/srv/net/tcp/iqueue.c	(revision 46189983620887e3f8ca39ca7efaf1c679d38910)
@@ -110,5 +110,5 @@
 	link = list_first(&iqueue->list);
 	while (link != NULL) {
-			log_msg(LOG_DEFAULT, LVL_NOTE, "tcp_iqueue_remove_seg() - next");
+		log_msg(LOG_DEFAULT, LVL_NOTE, "tcp_iqueue_remove_seg() - next");
 		qe = list_get_instance(link,
 		    tcp_iqueue_entry_t, link);
@@ -162,5 +162,5 @@
 		tcp_segment_delete(iqe->seg);
 
-         	link = list_first(&iqueue->list);
+		link = list_first(&iqueue->list);
 		if (link == NULL) {
 			log_msg(LOG_DEFAULT, LVL_DEBUG, "iqueue is empty");
Index: uspace/srv/net/tcp/service.c
===================================================================
--- uspace/srv/net/tcp/service.c	(revision b752a317bb5dfb454cb227f59a1be5d52d10947d)
+++ uspace/srv/net/tcp/service.c	(revision 46189983620887e3f8ca39ca7efaf1c679d38910)
@@ -116,5 +116,6 @@
 
 	/* XXX Failed to establish connection */
-	if (0) tcp_ev_conn_failed(cconn);
+	if (0)
+		tcp_ev_conn_failed(cconn);
 }
 
Index: uspace/srv/net/tcp/tcp.c
===================================================================
--- uspace/srv/net/tcp/tcp.c	(revision b752a317bb5dfb454cb227f59a1be5d52d10947d)
+++ uspace/srv/net/tcp/tcp.c	(revision 46189983620887e3f8ca39ca7efaf1c679d38910)
@@ -74,5 +74,6 @@
 	tcp_ncsim_fibril_start();
 
-	if (0) tcp_test();
+	if (0)
+		tcp_test();
 
 	rc = tcp_inet_init();
Index: uspace/srv/net/tcp/test.c
===================================================================
--- uspace/srv/net/tcp/test.c	(revision b752a317bb5dfb454cb227f59a1be5d52d10947d)
+++ uspace/srv/net/tcp/test.c	(revision 46189983620887e3f8ca39ca7efaf1c679d38910)
@@ -79,8 +79,8 @@
 		printf("S: User received %zu bytes '%s'.\n", rcvd, rcv_buf);
 
-		async_usleep(1000*1000*2);
+		async_usleep(1000 * 1000 * 2);
 	}
 
-	async_usleep(/*10**/1000*1000);
+	async_usleep(/*10**/1000 * 1000);
 
 	printf("S: User close...\n");
@@ -107,14 +107,14 @@
 	epp.remote.port = 80;
 
-	async_usleep(1000*1000*3);
+	async_usleep(1000 * 1000 * 3);
 	printf("C: User open...\n");
 	tcp_uc_open(&epp, ap_active, 0, &conn);
 	conn->name = (char *) "C";
 
-	async_usleep(1000*1000*10);
+	async_usleep(1000 * 1000 * 10);
 	printf("C: User send...\n");
 	tcp_uc_send(conn, (void *)msg, str_size(msg), 0);
 
-	async_usleep(1000*1000*20/**20*2*/);
+	async_usleep(1000 * 1000 * 20/**20*2*/);
 	printf("C: User close...\n");
 	tcp_uc_close(conn);
@@ -130,5 +130,5 @@
 	printf("tcp_test()\n");
 
-	async_usleep(1000*1000);
+	async_usleep(1000 * 1000);
 
 	if (0) {
