From 112492b3f999849e975d3f7565b615dcfbffae92 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Mon, 30 Nov 2009 21:58:53 +0000 Subject: [PATCH] Backport a tiny fix from trunk that makes GCC 4.4.x happier. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.2@231695 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- pbx/pbx_config.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pbx/pbx_config.c b/pbx/pbx_config.c index 3757a56cf4..b9a40f4cea 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 char config[] = "extensions.conf"; +static char registrar[] = "pbx_config"; static char userscontext[AST_MAX_EXTENSION] = "default"; static int static_config = 0;