From: Radoslaw Zarzynski Date: Mon, 31 May 2021 23:37:04 +0000 (+0000) Subject: crimson/os: fix formatting in AlienStore::get_attr(). X-Git-Tag: v17.1.0~1796^2 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=c63a78131fa2dacf6807d209e3f2a1d5faa3026c;p=ceph-ci.git crimson/os: fix formatting in AlienStore::get_attr(). Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/crimson/os/alienstore/alien_store.cc b/src/crimson/os/alienstore/alien_store.cc index 0480383c84b..ccf5a22246b 100644 --- a/src/crimson/os/alienstore/alien_store.cc +++ b/src/crimson/os/alienstore/alien_store.cc @@ -308,7 +308,7 @@ AlienStore::get_attr(CollectionRef ch, // to `std::string` for the sake of extending life-time not only of // a _ptr-to-data_ but _data_ as well. Otherwise we would run into a use- // after-free issue. - auto c =static_cast(ch.get()); + auto c = static_cast(ch.get()); return store->getattr(c->collection, oid, name.c_str(), value); }).then([oid, &value] (int r) -> get_attr_errorator::future { if (r == -ENOENT) {