]> git.proxmox.com Git - qemu.git/blobdiff - audio/mixeng.c
rng-egd: remove redundant free
[qemu.git] / audio / mixeng.c
index 02a9d9fb92ba3bdc7c3ba587c77c5a48dda4d73d..0e4976f271e5c180ebdfb7819034a31fab5ea5de 100644 (file)
@@ -348,7 +348,6 @@ void mixeng_clear (struct st_sample *buf, int len)
 
 void mixeng_volume (struct st_sample *buf, int len, struct mixeng_volume *vol)
 {
-#ifdef CONFIG_MIXEMU
     if (vol->mute) {
         mixeng_clear (buf, len);
         return;
@@ -364,9 +363,4 @@ void mixeng_volume (struct st_sample *buf, int len, struct mixeng_volume *vol)
 #endif
         buf += 1;
     }
-#else
-    (void) buf;
-    (void) len;
-    (void) vol;
-#endif
 }