summaryrefslogtreecommitdiff
path: root/aserver
diff options
context:
space:
mode:
authorAbramo Bagnara <abramo@alsa-project.org>2000-12-21 20:44:10 +0000
committerAbramo Bagnara <abramo@alsa-project.org>2000-12-21 20:44:10 +0000
commit8dd927e97fdaddf3eb9f733299130041c7d73e3d (patch)
tree9183cbe646ecc785abb1d6a1c8efc366bd5318a4 /aserver
parent2fe121909973118cd1bbaae3bf2b2deee86e2bdc (diff)
downloadalsa-lib-8dd927e97fdaddf3eb9f733299130041c7d73e3d.tar.gz
New hw_params implementation
Diffstat (limited to 'aserver')
-rw-r--r--aserver/aserver.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/aserver/aserver.c b/aserver/aserver.c
index 8c07a8dc..cf8119ce 100644
--- a/aserver/aserver.c
+++ b/aserver/aserver.c
@@ -379,8 +379,8 @@ int pcm_shm_cmd(client_t *client)
case SND_PCM_IOCTL_INFO:
ctrl->result = snd_pcm_info(pcm, (snd_pcm_info_t *) &ctrl->u.info);
break;
- case SND_PCM_IOCTL_HW_INFO:
- ctrl->result = snd_pcm_hw_info(pcm, (snd_pcm_hw_info_t *) &ctrl->u.hw_info);
+ case SND_PCM_IOCTL_HW_REFINE:
+ ctrl->result = snd_pcm_hw_refine(pcm, (snd_pcm_hw_params_t *) &ctrl->u.hw_refine);
break;
case SND_PCM_IOCTL_HW_PARAMS:
ctrl->result = snd_pcm_hw_params(pcm, (snd_pcm_hw_params_t *) &ctrl->u.hw_params);