From 77014eebbe020d95efbb2fa9a6ffc64b02a7566d Mon Sep 17 00:00:00 2001 From: Steve Murphy Date: Wed, 17 Dec 2008 21:02:45 +0000 Subject: [PATCH] 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: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@165279 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- utils/extconf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/extconf.c b/utils/extconf.c index d29ebee9aa..a86528bd8e 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 */