diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2019-10-23 10:24:20 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2019-10-26 15:38:06 +0200 |
commit | 5608956575088554f7612b716916efafae46187c (patch) | |
tree | 51104106aae6fb5ca028de90fe6ab7116b80b19f /audio | |
parent | 673652a785efb5f7da342b49c80a1abf033c82a7 (diff) |
audio: fix missing break
Reported by Coverity (CID 1406449).
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'audio')
-rw-r--r-- | audio/paaudio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/audio/paaudio.c b/audio/paaudio.c index df541a72d3..55a91f8980 100644 --- a/audio/paaudio.c +++ b/audio/paaudio.c @@ -385,6 +385,7 @@ static pa_stream *qpa_simple_new ( map.map[5] = PA_CHANNEL_POSITION_REAR_RIGHT; map.map[6] = PA_CHANNEL_POSITION_SIDE_LEFT; map.map[7] = PA_CHANNEL_POSITION_SIDE_RIGHT; + break; default: dolog("Internal error: unsupported channel count %d\n", ss->channels); |