libmsc/db.c: cosmetic: mark missing breaks in switch as intended

Change-Id: I3f4f34ecd0c5bb2d1a675ad5c4669fcffb87f292
Closes: Coverity CID#148209
This commit is contained in:
Vadim Yanitskiy 2018-11-21 19:48:09 +07:00
parent 58099f699f
commit 0cd761c604
1 changed files with 2 additions and 0 deletions

View File

@ -573,9 +573,11 @@ static int check_db_revision(void)
case 2:
if (update_db_revision_2())
goto error;
/* fall through */
case 3:
if (update_db_revision_3())
goto error;
/* fall through */
case 4:
if (update_db_revision_4())
goto error;