From: Sage Weil Date: Mon, 28 Nov 2016 19:24:57 +0000 (-0500) Subject: os/ObjectStore: add missing break X-Git-Tag: v11.1.0~120^2~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=ac72b77603f0b93152e797b81cd3e2e565be2056;p=ceph.git 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 --- diff --git a/src/os/ObjectStore.h b/src/os/ObjectStore.h index 87cc5aca3d5..586ccb7115c 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());