Commit 20b7643d authored by Anton Salikhmetov's avatar Anton Salikhmetov Committed by Christoph Hellwig

hfsplus: spaces/indentation clean-up

Fix incorrect spaces and indentation reported by checkpatch.pl.
Signed-off-by: default avatarAnton Salikhmetov <alexo@tuxera.com>
Signed-off-by: default avatarChristoph Hellwig <hch@tuxera.com>
parent 21f2296a
......@@ -213,7 +213,7 @@ static int hfsplus_readdir(struct file *filp, void *dirent, filldir_t filldir)
err = -EIO;
goto out;
}
next:
next:
filp->f_pos++;
if (filp->f_pos >= inode->i_size)
goto out;
......
......@@ -97,7 +97,7 @@ static int hfs_parse_new_pmap(struct super_block *sb, struct new_pmap *pm,
int i = 0;
do {
if (!memcmp(pm->pmPartType,"Apple_HFS", 9) &&
if (!memcmp(pm->pmPartType, "Apple_HFS", 9) &&
(sbi->part < 0 || sbi->part == i)) {
*part_start += be32_to_cpu(pm->pmPyPartStart);
*part_size = be32_to_cpu(pm->pmPartBlkCnt);
......
......@@ -215,7 +215,7 @@ int hfsplus_uni2asc(struct super_block *sb,
goto done;
}
}
same:
same:
switch (c0) {
case 0:
cc = 0x2400;
......@@ -226,7 +226,7 @@ int hfsplus_uni2asc(struct super_block *sb,
default:
cc = c0;
}
done:
done:
res = nls->uni2char(cc, op, len);
if (res < 0) {
if (res == -ENAMETOOLONG)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment