diff options
author | Luiz Fernando Capitulino <lcapitulino@mandriva.com.br> | 2006-01-11 01:38:27 +0100 |
---|---|---|
committer | Adrian Bunk <bunk@r063144.stusta.swh.mhn.de> | 2006-01-11 01:38:27 +0100 |
commit | 7823c7c121839f5a003acdf9c2f1839bfa2f6c43 (patch) | |
tree | 11c8b9ef1b714e8314cae2896e95fe8e6db64722 /fs | |
parent | 02706647a49011ae1e7b4eca33e835d1681b094e (diff) | |
download | op-kernel-dev-7823c7c121839f5a003acdf9c2f1839bfa2f6c43.zip op-kernel-dev-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')
-rw-r--r-- | fs/ext2/dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/dir.c b/fs/ext2/dir.c index 5b5f528..7442bdd 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)); |