From 9fa6f20a6f911a8cca67781ade4fb40ba2446bab Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 11 Jul 2017 10:45:19 -0700 Subject: [PATCH] voicecall: Reword fall through statement to avoid compiler warning --- src/voicecall.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/voicecall.c b/src/voicecall.c index 2ff9aa15..6907b502 100644 --- a/src/voicecall.c +++ b/src/voicecall.c @@ -611,10 +611,11 @@ static DBusMessage *voicecall_hangup(DBusConnection *conn, } /* - * Fall through, we check if we have a single alerting, - * dialing or active call and try to hang it up with - * hangup_all or hangup_active + * We check if we have a single alerting, dialing or activeo + * call and try to hang it up with hangup_all or hangup_active */ + + /* fall through */ case CALL_STATUS_ACTIVE: if (single_call == TRUE && vc->driver->hangup_all != NULL) { vc->pending = dbus_message_ref(msg);