From: Danny Al-Gaaf Date: Wed, 24 Jul 2013 16:30:16 +0000 (+0200) Subject: os/ObjectStore.cc: don't fallthrough after OP_OMAP_RMKEYRANGE X-Git-Tag: v0.67-rc3~61^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=6e6ef01591d94c8ab4d98e2e5fa58ef1e2225ec7;p=ceph.git os/ObjectStore.cc: don't fallthrough after OP_OMAP_RMKEYRANGE CID 1054829 (#1 of 1): Missing break in switch (MISSING_BREAK) unterminated_case: This case (value 37) is not terminated by a 'break' statement. Signed-off-by: Danny Al-Gaaf --- diff --git a/src/os/ObjectStore.cc b/src/os/ObjectStore.cc index ae97b6b08d34..9d8b989225b6 100644 --- a/src/os/ObjectStore.cc +++ b/src/os/ObjectStore.cc @@ -435,6 +435,7 @@ void ObjectStore::Transaction::dump(ceph::Formatter *f) f->dump_string("first", first); f->dump_string("last", last); } + break; default: f->dump_string("op_name", "unknown");