]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
[PATCH] reiserfs: fmt bugfix
authorAlexey Dobriyan <adobriyan@gmail.com>
Sat, 25 Nov 2006 19:09:30 +0000 (11:09 -0800)
committerLinus 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

index b67ce93540485af0762014f7c9213bfed390aabe..ac14318c81ba71eaf944e120c26f4b9630d16b0e 100644 (file)
@@ -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;
                }
        }