aboutsummaryrefslogtreecommitdiffstats
path: root/pbx.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-02 04:40:09 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-02 04:40:09 +0000
commit0d37c9585d49098fa554d3b56e0609f1ffcfa23b (patch)
tree68ea39ef47d1050cb821e356b08185beadb06495 /pbx.c
parentf2062e9c848fdb6116f15e0851e58547a169fa74 (diff)
staticize the list heads from my recent conversions to list macros
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@24139 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx.c')
-rw-r--r--pbx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx.c b/pbx.c
index 8df40eb0e..e7a7263b4 100644
--- a/pbx.c
+++ b/pbx.c
@@ -244,7 +244,7 @@ static int autofallthrough = 0;
AST_MUTEX_DEFINE_STATIC(maxcalllock);
static int countcalls = 0;
-AST_LIST_HEAD_STATIC(acf_root, ast_custom_function);
+static AST_LIST_HEAD_STATIC(acf_root, ast_custom_function);
/*! \brief Declaration of builtin applications */
static struct pbx_builtin {
@@ -464,7 +464,7 @@ static struct pbx_builtin {
static struct ast_context *contexts = NULL;
AST_MUTEX_DEFINE_STATIC(conlock); /*!< Lock for the ast_context list */
-AST_LIST_HEAD_STATIC(apps, ast_app);
+static AST_LIST_HEAD_STATIC(apps, ast_app);
struct ast_switch *switches = NULL;
AST_MUTEX_DEFINE_STATIC(switchlock); /*!< Lock for switches */