Removed snd_pcm_hwdiff() function

This commit is contained in:
Jaroslav Kysela 2003-02-22 17:53:01 +00:00
parent 2dab1dfbc3
commit 7b09000813
7 changed files with 4 additions and 51 deletions

View file

@ -325,7 +325,7 @@ snd_pcm_sframes_t snd_pcm_plugin_forward(snd_pcm_t *pcm, snd_pcm_uframes_t frame
sframes = frames;
snd_atomic_write_begin(&plugin->watom);
sframes = snd_pcm_forward(plugin->slave, (snd_pcm_uframes_t) sframes);
if (sframes < 0) {
if ((snd_pcm_sframes_t) sframes < 0) {
snd_atomic_write_end(&plugin->watom);
return sframes;
}