]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
os/bluestore/BlueStore.cc: _open_fm() expects a bool 29539/head
authorNeha Ojha <nojha@redhat.com>
Wed, 7 Aug 2019 20:33:56 +0000 (16:33 -0400)
committerNeha Ojha <nojha@redhat.com>
Wed, 7 Aug 2019 20:33:56 +0000 (16:33 -0400)
bug fix for 974eae57d55a0ea847b25b486b58540287292254

Signed-off-by: Neha Ojha <nojha@redhat.com>
src/os/bluestore/BlueStore.cc

index b2e9c7cd3260374beafe4cecbe290356186ec1cf..e353ab6e063a6d99718e0a70619fc8e9b82224e6 100644 (file)
@@ -4845,7 +4845,7 @@ int BlueStore::_open_db_and_around()
       goto out_db;
     }
 
-    r = _open_fm(nullptr);
+    r = _open_fm(false);
     if (r < 0)
       goto out_db;
 
@@ -4863,7 +4863,7 @@ int BlueStore::_open_db_and_around()
       goto out_db;
     }
 
-    r = _open_fm(nullptr);
+    r = _open_fm(false);
     if (r < 0)
       goto out_db;