diff options
Diffstat (limited to 'audio/wavaudio.c')
-rw-r--r-- | audio/wavaudio.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/audio/wavaudio.c b/audio/wavaudio.c index 6846a1a9f7..09083da2cf 100644 --- a/audio/wavaudio.c +++ b/audio/wavaudio.c @@ -105,7 +105,8 @@ static void le_store (uint8_t *buf, uint32_t val, int len) } } -static int wav_init_out (HWVoiceOut *hw, struct audsettings *as) +static int wav_init_out(HWVoiceOut *hw, struct audsettings *as, + void *drv_opaque) { WAVVoiceOut *wav = (WAVVoiceOut *) hw; int bits16 = 0, stereo = 0; @@ -117,8 +118,6 @@ static int wav_init_out (HWVoiceOut *hw, struct audsettings *as) }; struct audsettings wav_as = conf.settings; - (void) as; - stereo = wav_as.nchannels == 2; switch (wav_as.fmt) { case AUD_FMT_S8: |