summary refs log tree commit diff
path: root/fs/ext2/dir.c
diff options
context:
space:
mode:
authorLuiz Fernando Capitulino <lcapitulino@mandriva.com.br>2006-01-11 01:38:27 +0100
committerAdrian Bunk <bunk@r063144.stusta.swh.mhn.de>2006-01-11 01:38:27 +0100
commit7823c7c121839f5a003acdf9c2f1839bfa2f6c43 (patch)
tree11c8b9ef1b714e8314cae2896e95fe8e6db64722 /fs/ext2/dir.c
parent02706647a49011ae1e7b4eca33e835d1681b094e (diff)
downloadlinux-7823c7c121839f5a003acdf9c2f1839bfa2f6c43.tar.gz
ext2: trivial indentation fix.
This memset() line was indented with seven spaces, this patch fixes
it to use a tab instead. Yes, very trivial but it's the third time
I have to look at this line..

Signed-off-by: Luiz Capitulino <lcapitulino@mandriva.com.br>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Diffstat (limited to 'fs/ext2/dir.c')
-rw-r--r--fs/ext2/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/dir.c b/fs/ext2/dir.c
index 5b5f52876b42..7442bdd1267a 100644
--- a/fs/ext2/dir.c
+++ b/fs/ext2/dir.c
@@ -592,7 +592,7 @@ int ext2_make_empty(struct inode *inode, struct inode *parent)
 		goto fail;
 	}
 	kaddr = kmap_atomic(page, KM_USER0);
-       memset(kaddr, 0, chunk_size);
+	memset(kaddr, 0, chunk_size);
 	de = (struct ext2_dir_entry_2 *)kaddr;
 	de->name_len = 1;
 	de->rec_len = cpu_to_le16(EXT2_DIR_REC_LEN(1));