Index: uspace/lib/ext4/include/ext4/types.h
===================================================================
--- uspace/lib/ext4/include/ext4/types.h	(revision a46e56be16ae82f0d007dd26c68b250f3f725ae0)
+++ uspace/lib/ext4/include/ext4/types.h	(revision 5754c31e4e22b3ba9c461583e759f5fed5d44704)
@@ -323,5 +323,5 @@
 			uint32_t author;
 		} hurd2;
-	} __attribute__ ((packed)) osd2;
+	} __attribute__((packed)) osd2;
 
 	uint16_t extra_isize;
@@ -333,5 +333,5 @@
 	uint32_t crtime_extra;  /* Extra file creation time (nsec << 2 | epoch) */
 	uint32_t version_hi;    /* High 32 bits for 64-bit version */
-} __attribute__ ((packed)) ext4_inode_t;
+} __attribute__((packed)) ext4_inode_t;
 
 #define EXT4_INODE_MODE_FIFO       0x1000
@@ -407,5 +407,5 @@
 		uint8_t name_length_high;  /* Higher 8 bits of name length */
 		uint8_t inode_type;        /* Type of referenced inode (in rev >= 0.5) */
-	} __attribute__ ((packed));
+	} __attribute__((packed));
 
 	uint8_t name[EXT4_DIRECTORY_FILENAME_LEN];  /* Entry name */
Index: uspace/lib/ext4/src/balloc.c
===================================================================
--- uspace/lib/ext4/src/balloc.c	(revision a46e56be16ae82f0d007dd26c68b250f3f725ae0)
+++ uspace/lib/ext4/src/balloc.c	(revision 5754c31e4e22b3ba9c461583e759f5fed5d44704)
@@ -501,5 +501,5 @@
 
 		free_blocks =
-		     ext4_block_group_get_free_blocks_count(bg_ref->block_group, sb);
+		    ext4_block_group_get_free_blocks_count(bg_ref->block_group, sb);
 		if (free_blocks == 0) {
 			/* This group has no free blocks */
@@ -573,5 +573,5 @@
 		}
 
-next_group:
+	next_group:
 		rc = ext4_filesystem_put_block_group_ref(bg_ref);
 		if (rc != EOK)
Index: uspace/lib/ext4/src/bitmap.c
===================================================================
--- uspace/lib/ext4/src/bitmap.c	(revision a46e56be16ae82f0d007dd26c68b250f3f725ae0)
+++ uspace/lib/ext4/src/bitmap.c	(revision 5754c31e4e22b3ba9c461583e759f5fed5d44704)
@@ -55,5 +55,5 @@
 	uint8_t *target = bitmap + byte_index;
 
-	*target &= ~ (1 << bit_index);
+	*target &= ~(1 << bit_index);
 }
 
@@ -80,5 +80,5 @@
 
 		target = bitmap + byte_index;
-		*target &= ~ (1 << bit_index);
+		*target &= ~(1 << bit_index);
 
 		idx++;
@@ -112,5 +112,5 @@
 
 		target = bitmap + byte_index;
-		*target &= ~ (1 << bit_index);
+		*target &= ~(1 << bit_index);
 
 		idx++;
Index: uspace/lib/ext4/src/inode.c
===================================================================
--- uspace/lib/ext4/src/inode.c	(revision a46e56be16ae82f0d007dd26c68b250f3f725ae0)
+++ uspace/lib/ext4/src/inode.c	(revision 5754c31e4e22b3ba9c461583e759f5fed5d44704)
@@ -523,5 +523,5 @@
  *
  */
-ext4_extent_header_t * ext4_inode_get_extent_header(ext4_inode_t *inode)
+ext4_extent_header_t *ext4_inode_get_extent_header(ext4_inode_t *inode)
 {
 	return (ext4_extent_header_t *) inode->blocks;
