]> Git Repo - qemu.git/blobdiff - audio/audio.c
audio: Add missing fall through comments
[qemu.git] / audio / audio.c
index c8b88d892d2061ee9f1d6e449b77b065cbfb9176..a76787b3e8729c76b1beaabd47d29045e567b434 100644 (file)
@@ -306,6 +306,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;
@@ -313,6 +314,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;
This page took 0.02373 seconds and 4 git commands to generate.