Index: uspace/lib/usb/src/debug.c
===================================================================
--- uspace/lib/usb/src/debug.c	(revision 3015f4d8b3a530a273098cf4a8a12673b7c8006d)
+++ uspace/lib/usb/src/debug.c	(revision a9d85df9ee126de8f372c5cec3a11408064ec8ce)
@@ -68,7 +68,7 @@
 		if (rc > 0) {
 			log_stream = fopen(fname, "w");
-			if (log_stream != NULL) {
+			if (log_stream != NULL)
 				setvbuf(log_stream, NULL, _IOFBF, BUFSIZ);
-			}
+			
 			free(fname);
 		}
Index: uspace/lib/usbvirt/src/device.c
===================================================================
--- uspace/lib/usbvirt/src/device.c	(revision 3015f4d8b3a530a273098cf4a8a12673b7c8006d)
+++ uspace/lib/usbvirt/src/device.c	(revision a9d85df9ee126de8f372c5cec3a11408064ec8ce)
@@ -49,7 +49,7 @@
 /** Main IPC call handling from virtual host controller.
  *
- * @param iid		Caller identification
- * @param icall		Initial incoming call
- * @param arg		Local argument
+ * @param iid   Caller identification
+ * @param icall Initial incoming call
+ * @param arg   Local argument
  */
 static void callback_connection(ipc_callid_t iid, ipc_call_t *icall, void *arg)
Index: uspace/srv/fs/fat/fat_idx.c
===================================================================
--- uspace/srv/fs/fat/fat_idx.c	(revision 3015f4d8b3a530a273098cf4a8a12673b7c8006d)
+++ uspace/srv/fs/fat/fat_idx.c	(revision a9d85df9ee126de8f372c5cec3a11408064ec8ce)
@@ -59,13 +59,13 @@
 typedef struct {
 	link_t		link;
-	devmap_handle_t	devmap_handle;
+	devmap_handle_t devmap_handle;
 
 	/** Next unassigned index. */
-	fs_index_t	next;
+	fs_index_t next;
 	/** Number of remaining unassigned indices. */
-	uint64_t	remaining;
+	uint64_t remaining;
 
 	/** Sorted list of intervals of freed indices. */
-	list_t		freed_list;
+	list_t freed_list;
 } unused_t;
 
@@ -97,5 +97,5 @@
 			return u;
 	}
-
+	
 	if (lock)
 		fibril_mutex_unlock(&unused_lock);
