Linux codestyle format (tabs indenation)
[lwext4.git] / lwext4 / ext4_balloc.h
index 24cf470e8251dccf2f8e0afeea1acbb767ec2d04..06ad897ef6f4951e29b6cfe628d57290493a2654 100644 (file)
@@ -54,7 +54,7 @@
  * @return  block id of the first datablock in block group*/
 uint32_t
 ext4_balloc_get_first_data_block_in_group(struct ext4_sblock *s,
-                                          struct ext4_block_group_ref *bg_ref);
+                                         struct ext4_block_group_ref *bg_ref);
 
 /**@brief   Free block from inode.
  * @param   inode_ref inode reference
@@ -67,7 +67,7 @@ int ext4_balloc_free_block(struct ext4_inode_ref *inode_ref, uint32_t baddr);
  * @param   baddr block address
  * @return  standard error code*/
 int ext4_balloc_free_blocks(struct ext4_inode_ref *inode_ref, uint32_t first,
-                            uint32_t count);
+                           uint32_t count);
 
 /**@brief   Allocate block procedure.
  * @param   inode_ref inode reference
@@ -81,7 +81,7 @@ int ext4_balloc_alloc_block(struct ext4_inode_ref *inode_ref, uint32_t *baddr);
  * @param   free if baddr is not allocated
  * @return  standard error code*/
 int ext4_balloc_try_alloc_block(struct ext4_inode_ref *inode_ref,
-                                uint32_t baddr, bool *free);
+                               uint32_t baddr, bool *free);
 
 #endif /* EXT4_BALLOC_H_ */