Index: uspace/srv/loc/loc.c
===================================================================
--- uspace/srv/loc/loc.c	(revision 10a5479d350a463f993dd6fe5d5e8b478a242573)
+++ uspace/srv/loc/loc.c	(revision 5cc9eba114f1b3db3d9b0fce528eeec326c97785)
@@ -813,10 +813,9 @@
  * On success, answer will contain EOK int retval.
  * On failure, error code will be sent in retval.
+ *
  */
 static void loc_callback_create(ipc_callid_t iid, ipc_call_t *icall)
 {
-	cb_sess_t *cb_sess;
-	
-	cb_sess = calloc(1, sizeof(cb_sess_t));
+	cb_sess_t *cb_sess = calloc(1, sizeof(cb_sess_t));
 	if (cb_sess == NULL) {
 		async_answer_0(iid, ENOMEM);
Index: uspace/srv/net/net/net.h
===================================================================
--- uspace/srv/net/net/net.h	(revision 10a5479d350a463f993dd6fe5d5e8b478a242573)
+++ uspace/srv/net/net/net.h	(revision 5cc9eba114f1b3db3d9b0fce528eeec326c97785)
@@ -96,6 +96,6 @@
 	
 	/** Serving network interface driver module index. */
-	service_id_t sid;  /**< Service ID */
-	async_sess_t *sess;      /**< Driver session. */
+	service_id_t sid;    /**< Service ID */
+	async_sess_t *sess;  /**< Driver session. */
 	
 	module_t *nil;  /**< Serving link layer module index. */
Index: uspace/srv/net/nil/nildummy/nildummy.c
===================================================================
--- uspace/srv/net/nil/nildummy/nildummy.c	(revision 10a5479d350a463f993dd6fe5d5e8b478a242573)
+++ uspace/srv/net/nil/nildummy/nildummy.c	(revision 5cc9eba114f1b3db3d9b0fce528eeec326c97785)
@@ -360,6 +360,4 @@
     services_t sender)
 {
-	packet_t *p;
-	
 	fibril_rwlock_read_lock(&nildummy_globals.devices_lock);
 	
@@ -371,5 +369,5 @@
 	}
 	
-	p = packet;
+	packet_t *p = packet;
 	do {
 		nic_send_frame(device->sess, packet_get_data(p),
