diff options
author | Sage Weil <sage@newdream.net> | 2009-10-26 22:06:22 -0700 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2009-10-26 22:07:59 -0700 |
commit | 6ca874e92d5e50beb8e351dfd8121947bafc79ec (patch) | |
tree | 7c23fddf5c2948f9f07cb68d5a0ebf11d4b8614d /fs | |
parent | 7b813c46021e8f4909772a5bbfb5212bd140764c (diff) |
ceph: silence uninitialized variable warning
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ceph/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index deb51bd6ed8..924e6cad0b6 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, struct ceph_client *client; int err; int (*compare_super)(struct super_block *, void *) = ceph_compare_super; - const char *path; + const char *path = 0; dout("ceph_get_sb\n"); |