diff --git a/src/shared/att.c b/src/shared/att.c
index ca2d051..4670de7 100644
--- a/src/shared/att.c
+++ b/src/shared/att.c
case ATT_OP_TYPE_RSP:
/* Set in_req to false to indicate that no request is pending */
att->in_req = false;
-
- /* Fall through to the next case */
+ /* fall through */
case ATT_OP_TYPE_CMD:
case ATT_OP_TYPE_NOT:
case ATT_OP_TYPE_CONF:
}
att->in_req = true;
-
- /* Fall through to the next case */
+ /* fall through */
case ATT_OP_TYPE_CMD:
case ATT_OP_TYPE_NOT:
case ATT_OP_TYPE_UNKNOWN:
case ATT_OP_TYPE_IND:
+ /* fall through */
default:
/* For all other opcodes notify the upper layer of the PDU and
* let them act on it.