mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-26 02:25:00 -05:00
[PATCH] reiserfs: fmt bugfix
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>
This commit is contained in:
parent
17ad78e59a
commit
533221fbaf
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue