diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/mm-iface-modem-voice.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mm-iface-modem-voice.c b/src/mm-iface-modem-voice.c index a91ca881..03aaeb0a 100644 --- a/src/mm-iface-modem-voice.c +++ b/src/mm-iface-modem-voice.c @@ -1896,7 +1896,7 @@ in_call_setup_context_step (GTask *task) self, (GAsyncReadyCallback) setup_in_call_unsolicited_events_ready, task); - break; + return; } ctx->step++; /* fall-through */ @@ -1907,7 +1907,7 @@ in_call_setup_context_step (GTask *task) self, (GAsyncReadyCallback) setup_in_call_audio_channel_ready, task); - break; + return; } ctx->step++; /* fall-through */ @@ -2031,7 +2031,7 @@ in_call_cleanup_context_step (GTask *task) self, (GAsyncReadyCallback) cleanup_in_call_audio_channel_ready, task); - break; + return; } ctx->step++; /* fall-through */ @@ -2042,7 +2042,7 @@ in_call_cleanup_context_step (GTask *task) self, (GAsyncReadyCallback) cleanup_in_call_unsolicited_events_ready, task); - break; + return; } ctx->step++; /* fall-through */ |