diff options
author | Harvey Harrison <harvey.harrison@gmail.com> | 2008-04-28 05:16:21 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:46 -0400 |
commit | e13601bc6aa427a6483e7f66fde55ac3b5fed335 (patch) | |
tree | dce69d42f4968b313eb06af31b03f079b856f483 | |
parent | 9e902df6be2cb7444e5a0f7e2e72bcbf3b978f3e (diff) |
reiserfs: fix sparse warning in journal.c
fs/reiserfs/journal.c:4319:2: warning: returning void-valued expression
Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com>
Cc: Chris Mason <chris.mason@oracle.com>
Cc: Jeff Mahoney <jeffm@suse.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | fs/reiserfs/journal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/reiserfs/journal.c b/fs/reiserfs/journal.c index 060eb3f598e7..2e87b6aaec72 100644 --- a/fs/reiserfs/journal.c +++ b/fs/reiserfs/journal.c | |||
@@ -4316,5 +4316,5 @@ static void __reiserfs_journal_abort_soft(struct super_block *sb, int errno) | |||
4316 | 4316 | ||
4317 | void reiserfs_journal_abort(struct super_block *sb, int errno) | 4317 | void reiserfs_journal_abort(struct super_block *sb, int errno) |
4318 | { | 4318 | { |
4319 | return __reiserfs_journal_abort_soft(sb, errno); | 4319 | __reiserfs_journal_abort_soft(sb, errno); |
4320 | } | 4320 | } |