Skip to content

Commit

Permalink
reiserfs: fix sparse warning in journal.c
Browse files Browse the repository at this point in the history
fs/reiserfs/journal.c:4319:2: warning: returning void-valued expression

Signed-off-by: Harvey Harrison <[email protected]>
Cc: Chris Mason <[email protected]>
Cc: Jeff Mahoney <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
hharrison authored and torvalds committed Apr 28, 2008
1 parent 9e902df commit e13601b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fs/reiserfs/journal.c
Original file line number Diff line number Diff line change
Expand Up @@ -4316,5 +4316,5 @@ static void __reiserfs_journal_abort_soft(struct super_block *sb, int errno)

void reiserfs_journal_abort(struct super_block *sb, int errno)
{
return __reiserfs_journal_abort_soft(sb, errno);
__reiserfs_journal_abort_soft(sb, errno);
}

0 comments on commit e13601b

Please sign in to comment.