aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-03 22:08:46 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-11-03 22:08:46 +0000
commitd8c79fc61c97de323907065165438bc96b0a04f5 (patch)
tree5b20d51c9b254cacc893055177125d823ef6b529 /pbx
parentffd1e88a5db9277d35268e46b0196a56b443acd2 (diff)
Resolve a warning from gcc 4.4.1.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@227463 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rw-r--r--pbx/pbx_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c
index 69291aa09..a14ad694c 100644
--- a/pbx/pbx_config.c
+++ b/pbx/pbx_config.c
@@ -38,8 +38,8 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#include "asterisk/channel.h" /* AST_MAX_EXTENSION */
#include "asterisk/callerid.h"
-static char *config = "extensions.conf";
-static char *registrar = "pbx_config";
+static const char config[] = "extensions.conf";
+static const char registrar[] = "pbx_config";
static char userscontext[AST_MAX_EXTENSION] = "default";
static int static_config = 0;