summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Dobriyan2006-11-25 20:09:30 +0100
committerLinus Torvalds2006-11-25 22:28:33 +0100
commit533221fbaf001692d5db646f84f7d033fac78cc7 (patch)
treed01a3112704c06aad9f9eb81a09b9ff1daa0e3c8
parent[PATCH] drivers/rtc/rtc-rs5c372.c: fix a NULL dereference (diff)
downloadkernel-qcow2-linux-533221fbaf001692d5db646f84f7d033fac78cc7.tar.gz
kernel-qcow2-linux-533221fbaf001692d5db646f84f7d033fac78cc7.tar.xz
kernel-qcow2-linux-533221fbaf001692d5db646f84f7d033fac78cc7.zip
[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>
-rw-r--r--fs/reiserfs/file.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/reiserfs/file.c b/fs/reiserfs/file.c
index b67ce9354048..ac14318c81ba 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;
}
}