From ac72b77603f0b93152e797b81cd3e2e565be2056 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 28 Nov 2016 14:24:57 -0500 Subject: [PATCH] os/ObjectStore: add missing break CID 1394998 (#1 of 1): Missing break in switch (MISSING_BREAK) unterminated_case: The case for value ObjectStore::Transaction::OP_TRY_RENAME is not terminated by a 'break' statement. Signed-off-by: Sage Weil --- src/os/ObjectStore.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/os/ObjectStore.h b/src/os/ObjectStore.h index 87cc5aca3d5ea..586ccb7115cbe 100644 --- a/src/os/ObjectStore.h +++ b/src/os/ObjectStore.h @@ -690,6 +690,7 @@ public: op->cid = cm[op->cid]; op->oid = om[op->oid]; op->dest_oid = om[op->dest_oid]; + break; case OP_SPLIT_COLLECTION2: assert(op->cid < cm.size()); -- 2.39.5