summaryrefslogtreecommitdiff
path: root/src/pcm/pcm_local.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pcm/pcm_local.h')
-rw-r--r--src/pcm/pcm_local.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pcm/pcm_local.h b/src/pcm/pcm_local.h
index 8d25971f..ae0c44bf 100644
--- a/src/pcm/pcm_local.h
+++ b/src/pcm/pcm_local.h
@@ -1144,7 +1144,7 @@ static inline int snd_pcm_may_wait_for_avail_min(snd_pcm_t *pcm, snd_pcm_uframes
if (avail >= pcm->avail_min)
return 0;
if (pcm->fast_ops->may_wait_for_avail_min)
- return pcm->fast_ops->may_wait_for_avail_min(pcm, avail);
+ return pcm->fast_ops->may_wait_for_avail_min(pcm->fast_op_arg, avail);
return 1;
}