diff mbox

pcm: fix missing return value of snd_pcm_status()

Message ID 1468419312-15413-1-git-send-email-o-takashi@sakamocchi.jp (mailing list archive)
State New, archived
Headers show

Commit Message

Takashi Sakamoto July 13, 2016, 2:15 p.m. UTC
In former commits for thread-safe PCM APIs, snd_pcm_status() lost its
return value.

This commit regain it.

Fixes: 54931e5a5455('pcm: Add thread-safety to PCM API')
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
---
 src/pcm/pcm.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Takashi Iwai July 13, 2016, 2:35 p.m. UTC | #1
On Wed, 13 Jul 2016 16:15:12 +0200,
Takashi Sakamoto wrote:
> 
> In former commits for thread-safe PCM APIs, snd_pcm_status() lost its
> return value.
> 
> This commit regain it.
> 
> Fixes: 54931e5a5455('pcm: Add thread-safety to PCM API')
> Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>

Thanks, applied now.


Takashi
diff mbox

Patch

diff --git a/src/pcm/pcm.c b/src/pcm/pcm.c
index a66e8af..6c34719 100644
--- a/src/pcm/pcm.c
+++ b/src/pcm/pcm.c
@@ -953,6 +953,8 @@  int snd_pcm_status(snd_pcm_t *pcm, snd_pcm_status_t *status)
 	snd_pcm_lock(pcm);
 	err = pcm->fast_ops->status(pcm->fast_op_arg, status);
 	snd_pcm_unlock(pcm);
+
+	return err;
 }
 
 /**