aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-17 21:02:45 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-12-17 21:02:45 +0000
commitab6cd0d10fc2ea14b05fa47ce4c9778576337af5 (patch)
treedf51b9673de6a66470e1017784ab81ad1084cac0 /utils
parentf36029163b85f4467f6b2467e757131a4b4af51f (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.1@165279 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 d29ebee9a..a86528bd8 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 */