From: Abramo Bagnara Date: Thu, 18 May 2000 14:41:15 +0000 (+0000) Subject: Fixed snd_pcm_plug_client_voices_iovec return type X-Git-Tag: v1.0.3~1264 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=bec89c69aeb5ff0cd9d6bf5238de2bbfe43fce96;p=alsa-lib.git Fixed snd_pcm_plug_client_voices_iovec return type --- diff --git a/src/pcm/pcm_common.c b/src/pcm/pcm_common.c index 941dc243..4da798d4 100644 --- a/src/pcm/pcm_common.c +++ b/src/pcm/pcm_common.c @@ -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;