]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
ext2: trivial indentation fix.
authorLuiz Fernando Capitulino <lcapitulino@mandriva.com.br>
Wed, 11 Jan 2006 00:38:27 +0000 (01:38 +0100)
committerAdrian Bunk <bunk@r063144.stusta.swh.mhn.de>
Wed, 11 Jan 2006 00:38:27 +0000 (01:38 +0100)
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>
fs/ext2/dir.c

index 5b5f52876b427fc848bb934dbf7e4a7cd8160d7d..7442bdd1267a48da409f0f813113b04c6f9ae1a6 100644 (file)
@@ -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));