Renamed stop -> drop in API

This commit is contained in:
Abramo Bagnara 2000-10-02 06:59:59 +00:00
parent ebae7ebeb2
commit 057f56de06
10 changed files with 21 additions and 24 deletions

View file

@ -386,8 +386,8 @@ int pcm_shm_cmd(client_t *client)
case SND_PCM_IOCTL_DRAIN:
ctrl->result = snd_pcm_drain(pcm);
break;
case SND_PCM_IOCTL_STOP:
ctrl->result = snd_pcm_stop(pcm);
case SND_PCM_IOCTL_DROP:
ctrl->result = snd_pcm_drop(pcm);
break;
case SND_PCM_IOCTL_PAUSE:
ctrl->result = snd_pcm_pause(pcm, ctrl->u.pause);