From dbd884fbf44e0e5aa6fdfd04be5d5b9a5a3de84d Mon Sep 17 00:00:00 2001 From: Abramo Bagnara Date: Tue, 30 May 2000 11:40:22 +0000 Subject: [PATCH] Fixed typo --- src/pcm/pcm_plug.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pcm/pcm_plug.c b/src/pcm/pcm_plug.c index c9f6eb19..a0a0c327 100644 --- a/src/pcm/pcm_plug.c +++ b/src/pcm/pcm_plug.c @@ -617,7 +617,7 @@ static ssize_t snd_pcm_plug_stream_seek(snd_pcm_t *pcm, int stream, off_t offset ssize_t ret; snd_pcm_plug_t *plug = (snd_pcm_plug_t*) &pcm->private; if (snd_pcm_plug_direct(pcm, stream)) - return snd_pcm_seek(plug->slave, stream, offset); + return snd_pcm_stream_seek(plug->slave, stream, offset); if (offset < 0) { offset = snd_pcm_plug_slave_size(pcm, stream, -offset); if (offset < 0) @@ -628,7 +628,7 @@ static ssize_t snd_pcm_plug_stream_seek(snd_pcm_t *pcm, int stream, off_t offset if (offset < 0) return offset; } - ret = snd_pcm_seek(plug->slave, stream, offset); + ret = snd_pcm_stream_seek(plug->slave, stream, offset); if (ret < 0) return ret; return snd_pcm_plug_client_size(pcm, stream, ret); -- 2.47.1