diff options
-rw-r--r-- | plugins/option/mm-broadband-modem-option.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/option/mm-broadband-modem-option.c b/plugins/option/mm-broadband-modem-option.c index 8103932a..82ec58d0 100644 --- a/plugins/option/mm-broadband-modem-option.c +++ b/plugins/option/mm-broadband-modem-option.c @@ -561,8 +561,8 @@ load_access_technologies_step (GTask *task) switch (ctx->step) { case ACCESS_TECHNOLOGIES_STEP_FIRST: - /* Go on to next step */ ctx->step++; + /* fall through */ case ACCESS_TECHNOLOGIES_STEP_OSSYS: mm_base_modem_at_command (MM_BASE_MODEM (self), @@ -583,8 +583,8 @@ load_access_technologies_step (GTask *task) task); return; } - /* Go on to next step */ ctx->step++; + /* fall through */ case ACCESS_TECHNOLOGIES_STEP_OWCTI: if (ctx->check_3g) { @@ -596,8 +596,8 @@ load_access_technologies_step (GTask *task) task); return; } - /* Go on to next step */ ctx->step++; + /* fall through */ case ACCESS_TECHNOLOGIES_STEP_LAST: /* All done, set result and complete */ |