summaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_super.c
diff options
context:
space:
mode:
authorChristoph Hellwig2008-11-28 04:23:33 +0100
committerNiv Sardi2008-12-01 01:07:37 +0100
commit65795910c1b798f8a47181b48cf6eb163a15e778 (patch)
tree1b06b5b0de03166cdb73f6c9e25dc0207e28d53f /fs/xfs/linux-2.6/xfs_super.c
parent[XFS] allow inode64 mount option on 32 bit systems (diff)
downloadkernel-qcow2-linux-65795910c1b798f8a47181b48cf6eb163a15e778.tar.gz
kernel-qcow2-linux-65795910c1b798f8a47181b48cf6eb163a15e778.tar.xz
kernel-qcow2-linux-65795910c1b798f8a47181b48cf6eb163a15e778.zip
[XFS] fix spurious gcc warnings
Some recent gcc warnings don't like passing string variables to printf-like functions without using at least a "%s" format string. Change the two occurances of that in xfs to please gcc. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Eric Sandeen <sandeen@sandeen.net> Signed-off-by: Niv Sardi <xaiki@sgi.com>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_super.c')
-rw-r--r--fs/xfs/linux-2.6/xfs_super.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/xfs/linux-2.6/xfs_super.c b/fs/xfs/linux-2.6/xfs_super.c
index c3d004bc4621..cc5e07e3e7a1 100644
--- a/fs/xfs/linux-2.6/xfs_super.c
+++ b/fs/xfs/linux-2.6/xfs_super.c
@@ -1848,10 +1848,9 @@ STATIC int __init
init_xfs_fs(void)
{
int error;
- static char message[] __initdata = KERN_INFO \
- XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled\n";
- printk(message);
+ printk(KERN_INFO XFS_VERSION_STRING " with "
+ XFS_BUILD_OPTIONS " enabled\n");
ktrace_init(64);
vn_init();