Fixed snd_pcm_plug_client_voices_iovec return type

This commit is contained in:
Abramo Bagnara 2000-05-18 14:41:15 +00:00
parent 2284d80ef0
commit bec89c69ae

View file

@ -851,11 +851,11 @@ ssize_t snd_pcm_plug_client_voices_buf(snd_pcm_plugin_handle_t *handle,
return -EINVAL;
}
int snd_pcm_plug_client_voices_iovec(snd_pcm_plugin_handle_t *handle,
int channel,
const struct iovec *vector,
unsigned long count,
snd_pcm_plugin_voice_t **voices)
ssize_t snd_pcm_plug_client_voices_iovec(snd_pcm_plugin_handle_t *handle,
int channel,
const struct iovec *vector,
unsigned long count,
snd_pcm_plugin_voice_t **voices)
{
snd_pcm_plugin_t *plugin;
snd_pcm_plugin_voice_t *v;