nilfs2: fix style issue in nilfs_destroy_cachep

This gets rid of unwanted space chars in front of conditional
sentences of nilfs_destroy_cachep().

Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp>

+4 -4
+4 -4
fs/nilfs2/super.c
··· 1130 1130 1131 1131 static void nilfs_destroy_cachep(void) 1132 1132 { 1133 - if (nilfs_inode_cachep) 1133 + if (nilfs_inode_cachep) 1134 1134 kmem_cache_destroy(nilfs_inode_cachep); 1135 - if (nilfs_transaction_cachep) 1135 + if (nilfs_transaction_cachep) 1136 1136 kmem_cache_destroy(nilfs_transaction_cachep); 1137 - if (nilfs_segbuf_cachep) 1137 + if (nilfs_segbuf_cachep) 1138 1138 kmem_cache_destroy(nilfs_segbuf_cachep); 1139 - if (nilfs_btree_path_cache) 1139 + if (nilfs_btree_path_cache) 1140 1140 kmem_cache_destroy(nilfs_btree_path_cache); 1141 1141 } 1142 1142