From bec89c69aeb5ff0cd9d6bf5238de2bbfe43fce96 Mon Sep 17 00:00:00 2001 From: Abramo Bagnara Date: Thu, 18 May 2000 14:41:15 +0000 Subject: [PATCH] Fixed snd_pcm_plug_client_voices_iovec return type --- src/pcm/pcm_common.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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; -- 2.47.1