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>

authored by

Luiz Fernando Capitulino and committed by
Adrian Bunk
7823c7c1 02706647

+1 -1
+1 -1
fs/ext2/dir.c
··· 592 592 goto fail; 593 593 } 594 594 kaddr = kmap_atomic(page, KM_USER0); 595 - memset(kaddr, 0, chunk_size); 595 + memset(kaddr, 0, chunk_size); 596 596 de = (struct ext2_dir_entry_2 *)kaddr; 597 597 de->name_len = 1; 598 598 de->rec_len = cpu_to_le16(EXT2_DIR_REC_LEN(1));