projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
17ad78e
)
[PATCH] reiserfs: fmt bugfix
author
Alexey Dobriyan
<adobriyan@gmail.com>
Sat, 25 Nov 2006 19:09:30 +0000
(11:09 -0800)
committer
Linus Torvalds
<torvalds@woody.osdl.org>
Sat, 25 Nov 2006 21:28:33 +0000
(13:28 -0800)
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>
fs/reiserfs/file.c
patch
|
blob
|
history
diff --git
a/fs/reiserfs/file.c
b/fs/reiserfs/file.c
index b67ce93540485af0762014f7c9213bfed390aabe..ac14318c81ba71eaf944e120c26f4b9630d16b0e 100644
(file)
--- 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;
}
}