Skip to content

Commit

Permalink
os/ObjectStore: add missing break in dump()
Browse files Browse the repository at this point in the history
CID 751331 (ceph#1 of 1): Missing break in switch (MISSING_BREAK)
unterminated_case: This case (value 35) is not terminated by a 'break' statement.

Signed-off-by: Sage Weil <[email protected]>
  • Loading branch information
Sage Weil committed May 7, 2013
1 parent 298ebdb commit 9d85d67
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/os/ObjectStore.cc
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,7 @@ void ObjectStore::Transaction::dump(ceph::Formatter *f)
f->dump_stream("rem") << rem;
f->dump_stream("dest") << dest;
}
break;

case Transaction::OP_SPLIT_COLLECTION2:
{
Expand Down

0 comments on commit 9d85d67

Please sign in to comment.