From 9a35bd6d42768568a2dc85792c0d27ee317e329a Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Tue, 11 Jul 2017 11:32:14 -0700 Subject: [PATCH] audio: Add missing break statements --- profiles/audio/avrcp.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiles/audio/avrcp.c b/profiles/audio/avrcp.c index aa0085bbe..e8b602512 100644 --- a/profiles/audio/avrcp.c +++ b/profiles/audio/avrcp.c @@ -3121,8 +3121,10 @@ static gboolean avrcp_play_item_rsp(struct avctp *conn, uint8_t code, case AVRCP_STATUS_UID_CHANGED: case AVRCP_STATUS_DOES_NOT_EXIST: ret = -ENOENT; + break; default: ret = -EINVAL; + break; } goto done; } -- 2.47.3