subsys: logging: Fix switch statement

According with MISRA-C and unconditional break statement must
terminate every switch-clause.

MISRA-C rule 16.1 and 16.3

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
This commit is contained in:
Flavio Ceolin 2018-11-03 18:28:16 -07:00 committed by Anas Nashif
commit 3ced176088

View file

@ -285,6 +285,7 @@ static void std_print(struct log_msg *msg,
default:
/* Unsupported number of arguments. */
assert(true);
break;
}
}