From c95e91ef1aac25e0ca6ff70708bc2827f50e2b47 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 1 Aug 2014 19:24:26 -0700 Subject: [PATCH] os/KeyValueStore: clean up operator<< for KVSuperBlock Signed-off-by: Sage Weil --- src/os/KeyValueStore.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/os/KeyValueStore.h b/src/os/KeyValueStore.h index 2d8ed0f1619cb..1ce5c1927cad7 100644 --- a/src/os/KeyValueStore.h +++ b/src/os/KeyValueStore.h @@ -154,8 +154,7 @@ WRITE_CLASS_ENCODER(KVSuperblock) inline ostream& operator<<(ostream& out, const KVSuperblock& sb) { - return out << "sb(" << sb.compat_features << "): " - << sb.backend; + return out << "sb(" << sb.compat_features << " " << sb.backend << ")"; } -- 2.39.5