dummy: call: Codestyle

This commit is contained in:
Evangelos Ribeiro Tzaras
2021-12-10 08:32:46 +01:00
parent aadf546472
commit b3aff65822

View File

@@ -134,8 +134,7 @@ calls_dummy_call_send_dtmf_tone (CallsCall *call,
static gboolean static gboolean
outbound_timeout_cb (CallsDummyCall *self) outbound_timeout_cb (CallsDummyCall *self)
{ {
switch (self->state) switch (self->state) {
{
case CALLS_CALL_STATE_DIALING: case CALLS_CALL_STATE_DIALING:
change_state (self, change_state (self,
CALLS_CALL_STATE_ALERTING); CALLS_CALL_STATE_ALERTING);
@@ -152,7 +151,7 @@ outbound_timeout_cb (CallsDummyCall *self)
break; break;
} }
return FALSE; return G_SOURCE_REMOVE;
} }