ensure globals are all static

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6061 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2005-07-08 21:09:38 +00:00
parent f6f9cac028
commit 0111a38e4b

2
cdr.c
View File

@@ -81,7 +81,7 @@ AST_MUTEX_DEFINE_STATIC(cdr_batch_lock);
/* these are used to wake up the CDR thread when there's work to do */ /* these are used to wake up the CDR thread when there's work to do */
AST_MUTEX_DEFINE_STATIC(cdr_pending_lock); AST_MUTEX_DEFINE_STATIC(cdr_pending_lock);
pthread_cond_t cdr_pending_cond; static pthread_cond_t cdr_pending_cond;
/* /*
* We do a lot of checking here in the CDR code to try to be sure we don't ever let a CDR slip * We do a lot of checking here in the CDR code to try to be sure we don't ever let a CDR slip