From c63a78131fa2dacf6807d209e3f2a1d5faa3026c Mon Sep 17 00:00:00 2001 From: Radoslaw Zarzynski Date: Mon, 31 May 2021 23:37:04 +0000 Subject: [PATCH] crimson/os: fix formatting in AlienStore::get_attr(). Signed-off-by: Radoslaw Zarzynski --- src/crimson/os/alienstore/alien_store.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.5