From: Jaroslav Kysela Date: Mon, 24 May 2004 18:44:04 +0000 (+0000) Subject: compilation fix X-Git-Tag: v1.0.5~1 X-Git-Url: https://git.alsa-project.org/?a=commitdiff_plain;h=509e30494fa39d4b0930f43582b2709c08133eb1;p=alsa-lib.git compilation fix --- diff --git a/src/pcm/pcm_hw.c b/src/pcm/pcm_hw.c index 60ff5be1..a6fa3415 100644 --- a/src/pcm/pcm_hw.c +++ b/src/pcm/pcm_hw.c @@ -440,7 +440,7 @@ static int snd_pcm_hw_status(snd_pcm_t *pcm, snd_pcm_status_t * status) static snd_pcm_state_t snd_pcm_hw_state(snd_pcm_t *pcm) { snd_pcm_hw_t *hw = pcm->private_data; - int err = sync_ptr_lite(hw, 0); + int err = sync_ptr(hw, 0); if (err < 0) return err; return (snd_pcm_state_t) hw->mmap_status->state;