Skip to content

Commit

Permalink
[PATCH] reiserfs: fmt bugfix
Browse files Browse the repository at this point in the history
One reiserfs_warning() call uses %lu, but doesn't supply what to print.

Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Alexey Dobriyan authored and Linus Torvalds committed Nov 25, 2006
1 parent 17ad78e commit 533221f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fs/reiserfs/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ static int reiserfs_file_release(struct inode *inode, struct file *filp)
igrab(inode);
reiserfs_warning(inode->i_sb,
"pinning inode %lu because the "
"preallocation can't be freed");
"preallocation can't be freed",
inode->i_ino);
goto out;
}
}
Expand Down

0 comments on commit 533221f

Please sign in to comment.