From 4f85cf4d46316bb169b0b9a6345317be2e24a616 Mon Sep 17 00:00:00 2001 From: Takashi Iwai Date: Thu, 18 May 2000 17:52:58 +0000 Subject: [PATCH] - Fix bad spin_unlock_* - Fix casts from 64 bit pointer to int --- src/pcm/pcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pcm/pcm.c b/src/pcm/pcm.c index 5455ddf2..c014bc2c 100644 --- a/src/pcm/pcm.c +++ b/src/pcm/pcm.c @@ -488,7 +488,7 @@ int snd_pcm_voices_mask(snd_pcm_t *pcm, int channel, bitset_t *client_vmask) return pcm->ops->voices_mask(pcm, channel, client_vmask); } -int snd_pcm_bytes_per_second(snd_pcm_t *pcm, int channel) +ssize_t snd_pcm_bytes_per_second(snd_pcm_t *pcm, int channel) { struct snd_pcm_chan *chan; if (!pcm) -- 2.47.1