From: Josh Durgin Date: Tue, 25 Sep 2012 17:51:57 +0000 (-0700) Subject: test_librbd_fsx: add missing break statement X-Git-Tag: v0.53~53^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=fa219249445764c1b25c43daa8c5ff0fcb7556d8;p=ceph.git test_librbd_fsx: add missing break statement Fortunately we never used the -m option. CID 716962: Missing break in switch (MISSING_BREAK) At (1): This case (value 109) is not terminated by a 'break' statement. # (use "git add ..." to update what will be committed) Signed-off-by: Josh Durgin --- diff --git a/src/test/rbd/fsx.c b/src/test/rbd/fsx.c index 15bd630bdd2..17f4cb91855 100644 --- a/src/test/rbd/fsx.c +++ b/src/test/rbd/fsx.c @@ -1325,6 +1325,7 @@ main(int argc, char **argv) if (monitorend == 0) monitorend = -1; /* aka infinity */ debug = 1; + break; case 'n': sizechecks = 0; break;