diff options
-rw-r--r-- | src/mm-broadband-bearer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mm-broadband-bearer.c b/src/mm-broadband-bearer.c index 6690c8ac..29c1d2dd 100644 --- a/src/mm-broadband-bearer.c +++ b/src/mm-broadband-bearer.c @@ -867,8 +867,8 @@ cid_selection_3gpp_context_step (GTask *task) switch (ctx->step) { case CID_SELECTION_3GPP_STEP_FIRST: - /* Fall down to next step */ ctx->step++; + /* Fall through */ case CID_SELECTION_3GPP_STEP_FORMAT: cid_selection_3gpp_query_format (task); @@ -2119,8 +2119,8 @@ interface_initialization_step (GTask *task) switch (ctx->step) { case INITIALIZATION_STEP_FIRST: - /* Fall down to next step */ ctx->step++; + /* Fall through */ case INITIALIZATION_STEP_CDMA_RM_PROTOCOL: /* If a specific RM protocol is given, we need to check whether it is @@ -2140,8 +2140,8 @@ interface_initialization_step (GTask *task) return; } - /* Fall down to next step */ ctx->step++; + /* Fall through */ case INITIALIZATION_STEP_LAST: /* We are done without errors! */ |