diff options
author | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-08-14 17:32:33 +0100 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2016-12-22 11:25:20 +0000 |
commit | 4c7df6455923ac9bc78379ed07f34477f7ef1b4d (patch) | |
tree | b83eea940582bcf708ca57161502926b0092d5fe /fs | |
parent | 85a06b302a9dbe06e4bcfed715875e42b07531f6 (diff) | |
download | linux-4c7df6455923ac9bc78379ed07f34477f7ef1b4d.tar.bz2 |
befs: fix style issues in io.c
Fixing the two following checkpatch.pl issues:
ERROR: trailing whitespace
+ * Based on portions of file.c and inode.c $
WARNING: labels should not be indented
+ error:
Signed-off-by: Luis de Bethencourt <luisbg@osg.samsung.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/befs/io.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/befs/io.c b/fs/befs/io.c index b4a558126ee1..a117ad88628f 100644 --- a/fs/befs/io.c +++ b/fs/befs/io.c @@ -3,7 +3,7 @@ * * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com * - * Based on portions of file.c and inode.c + * Based on portions of file.c and inode.c * by Makoto Kato (m_kato@ga2.so-net.ne.jp) * * Many thanks to Dominic Giampaolo, author of Practical File System @@ -55,7 +55,7 @@ befs_bread_iaddr(struct super_block *sb, befs_inode_addr iaddr) befs_debug(sb, "<--- %s", __func__); return bh; - error: +error: befs_debug(sb, "<--- %s ERROR", __func__); return NULL; } |