From e4e3f0979e1820712a6a88bfcf60da34a8a747f0 Mon Sep 17 00:00:00 2001 From: William Hubbs Date: Fri, 21 Aug 2009 13:03:02 -0500 Subject: [PATCH] the status handle should be static --- alsa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alsa.c b/alsa.c index adc2ceb..e9378b0 100644 --- a/alsa.c +++ b/alsa.c @@ -38,7 +38,7 @@ static pthread_mutex_t audio_mutex = PTHREAD_MUTEX_INITIALIZER; static snd_pcm_t *handle; static snd_pcm_hw_params_t *params; -snd_pcm_status_t *status; +static snd_pcm_status_t *status; static int dir = 0; static void lock_audio_mutex(void)