From 0111a38e4bf6a8890008c85fcf72fe51ac1d76e9 Mon Sep 17 00:00:00 2001
From: "Kevin P. Fleming" <kpfleming@digium.com>
Date: Fri, 8 Jul 2005 21:09:38 +0000
Subject: [PATCH] ensure globals are all static

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6061 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 cdr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cdr.c b/cdr.c
index fc5f92968e..ac727a676a 100755
--- a/cdr.c
+++ b/cdr.c
@@ -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 */
 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
-- 
GitLab