aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-17 20:59:42 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-17 20:59:42 +0000
commit8e05ee78f439f9d4c4880ac26f5a9444a7dd9e06 (patch)
treecad65d661cc7c83745f50d342e910cc91d4cfb82 /utils
parent19bc55880fbc84e05585cd1a7f79aa30d7a3ef1c (diff)
Merged revisions 165254 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r165254 | murf | 2008-12-17 13:50:19 -0700 (Wed, 17 Dec 2008) | 5 lines This patch is here committed to satisfy the buildbot, who has a problem with the const. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@165267 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'utils')
-rw-r--r--utils/extconf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/extconf.c b/utils/extconf.c
index 644d2914c..fc85c81f3 100644
--- a/utils/extconf.c
+++ b/utils/extconf.c
@@ -2979,7 +2979,7 @@ struct ast_sw {
struct ast_ignorepat {
const char *registrar;
struct ast_ignorepat *next;
- const char pattern[0];
+ char pattern[0];
};
/*! \brief ast_context: An extension context */