From 6c5c0d66a792ecbbf92538a7822b62a36710a341 Mon Sep 17 00:00:00 2001 From: Mark Farrugia Date: Sun, 23 Sep 2018 22:03:30 +1000 Subject: Make pcm_ack static Add missing static declaration to pcm_ack callback function Signed-off-by: Mark Farrugia --- alsa-pcm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alsa-pcm.c b/alsa-pcm.c index 798f76c..21287ee 100644 --- a/alsa-pcm.c +++ b/alsa-pcm.c @@ -350,7 +350,7 @@ static int pcm_copy_kernel(struct snd_pcm_substream *substream, int channel, * Returns 0 on success or error code otherwise. * */ -int pcm_ack(struct snd_pcm_substream *substream) +static int pcm_ack(struct snd_pcm_substream *substream) { DO_AUDIOPATH_CB(((struct avirt_audiopath *)substream->private_data), ack, substream); -- cgit 1.2.3-korg