From: Alexey Dobriyan Date: Sat, 25 Nov 2006 19:09:30 +0000 (-0800) Subject: [PATCH] reiserfs: fmt bugfix X-Git-Tag: v2.6.19~37 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=533221fbaf001692d5db646f84f7d033fac78cc7;p=~emulex%2Finfiniband.git [PATCH] reiserfs: fmt bugfix One reiserfs_warning() call uses %lu, but doesn't supply what to print. Signed-off-by: Alexey Dobriyan Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/reiserfs/file.c b/fs/reiserfs/file.c index b67ce935404..ac14318c81b 100644 --- a/fs/reiserfs/file.c +++ b/fs/reiserfs/file.c @@ -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; } }