aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/super.c
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2009-10-27 01:06:22 -0400
committerSage Weil <sage@newdream.net>2009-10-27 01:07:59 -0400
commit6ca874e92d5e50beb8e351dfd8121947bafc79ec (patch)
tree7c23fddf5c2948f9f07cb68d5a0ebf11d4b8614d /fs/ceph/super.c
parent7b813c46021e8f4909772a5bbfb5212bd140764c (diff)
ceph: silence uninitialized variable warning
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r--fs/ceph/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c
index deb51bd6ed83..924e6cad0b66 100644
--- a/fs/ceph/super.c
+++ b/fs/ceph/super.c
@@ -808,7 +808,7 @@ static int ceph_get_sb(struct file_system_type *fs_type,
808 struct ceph_client *client; 808 struct ceph_client *client;
809 int err; 809 int err;
810 int (*compare_super)(struct super_block *, void *) = ceph_compare_super; 810 int (*compare_super)(struct super_block *, void *) = ceph_compare_super;
811 const char *path; 811 const char *path = 0;
812 812
813 dout("ceph_get_sb\n"); 813 dout("ceph_get_sb\n");
814 814