qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] audio: Add missing fall through comments
@ 2019-07-18 19:34 Stefan Weil
  2019-07-19  6:11 ` Marc-André Lureau
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Stefan Weil @ 2019-07-18 19:34 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-trivial, Stefan Weil, qemu-devel

Signed-off-by: Stefan Weil <sw@weilnetz.de>
---
 audio/audio.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/audio/audio.c b/audio/audio.c
index 5fd9a58a80..a7a13e900a 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -304,6 +304,7 @@ void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as)
 
     case AUDIO_FORMAT_S16:
         sign = 1;
+        /* fall through */
     case AUDIO_FORMAT_U16:
         bits = 16;
         shift = 1;
@@ -311,6 +312,7 @@ void audio_pcm_init_info (struct audio_pcm_info *info, struct audsettings *as)
 
     case AUDIO_FORMAT_S32:
         sign = 1;
+        /* fall through */
     case AUDIO_FORMAT_U32:
         bits = 32;
         shift = 2;
-- 
2.20.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-08-13 10:21 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-18 19:34 [Qemu-devel] [PATCH] audio: Add missing fall through comments Stefan Weil
2019-07-19  6:11 ` Marc-André Lureau
2019-07-19  7:29 ` Philippe Mathieu-Daudé
2019-07-19  7:43   ` Aleksandar Markovic
2019-07-19 10:21     ` Philippe Mathieu-Daudé
2019-08-13 10:20 ` Gerd Hoffmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).